Results 14 comments of Mani Gandham

@niieani This is an old issue but the .NET version has been recently updated and I've confirmed the hash ids match up to the JS version, https://www.nuget.org/packages/Hashids.net

https://github.com/share/sharedb > **ShareDB is a realtime database backend based on Operational Transformation (OT) of JSON documents.** > - Realtime synchronization of any JSON document > - Concurrent multi-user collaboration >...

The defaults are work fine and the *why* section of the readme explains the benefits of doing the minification at the end (works on the entire output and uses ES6...

@RiteshKo You can use a `ConcurrentQueue` to store items read from Kafka and then process that queue with multiple threads/tasks. You can also use `System.Threading.Channels` if you want more features...

I'm not sure what you mean by "raise the task" but you should never just start a whole bunch of async methods without any tracking (especially since there's no guarantee...

If you have a HTTPS site, all the resources should be loaded from https:// too. Host them locally if those resources don't support https from the external url.

Please don't call `GC.collect()` inside the library. It affects the entire running program and doesn't solve the memory leak if there is one.

Single addresses? IPv4 can be stored as integers (since that's what they are). Otherwise, or if you need IPv6, use `binary` to store the raw bytes or `varchar` to store...

There's no DB connection, it's HTTP or UDP. The `Close()` method [just calls `Dispose()`](https://github.com/influxdata/influxdb-csharp/blob/dev/src/InfluxDB.Collector/Metrics.cs#L48) on the static `Collector` which submits the pending data. That's the right way to do it.

Is this still in progress? We deserialize directly to types from async I/O so `JsonSerializer.DeserializeAsync` is what we're looking for... unless there's another way to do this now?