swdee
swdee
The methods of this package don't return any error, such as in the Set() method; https://github.com/VictoriaMetrics/fastcache/blob/8835719dc76cc26f97026e3aa726742e7d2f1053/fastcache.go#L145-L149 Which in turn calls the buckets Set() method that silently skips caching entries at...
Trying to deploy NATS operator using Helm on a Digital Ocean k8s instance using the following command; ``` $ helm install nats-operator --name v20190521 --namespace=nats-io ``` This fails with error...
We want our application code base to support connection to both Simple (single standalone) and Cluster Redis servers. Currently we have implemented this with our own wrapper for both `NewClusterClient()`...
Curious to know what the reasons were to remove transaction gossiping and then add it back in again?
Concerning the following line of code the initialisation of the slice `opentracingFields` creates a slice of the size of the number of fields plus one presumable for the log string....
Curious to know your thoughts on your goals with this project and if you would consider joining efforts in the BCH implementation of btcsuite on the https://github.com/gcash/bchd/ fork?
In the following code there are unnecessary calculations being performed as the same variable cancels itself out. https://github.com/Vertical-Beach/ByteTrack-cpp/blob/d43805d461a714f65da039981bd5f5d21cf5cf59/src/Rect.cpp#L121 Instead it should be. ``` const float ua = (tlwh[2] + 1)...