shade icon indicating copy to clipboard operation
shade copied to clipboard

Memcached client for Scala

Results 14 shade issues
Sort by recently updated
recently updated
newest added

* remove support of Scala 2.10 as it's barely used nowadays. * igrate also sbt plugins and other dependencies. * increasing sbt version to `1.4.6` https://github.com/monix/shade/issues/66

When running with Scala `2.13` it turns up with `java.lang.ClassNotFoundException: scala.Serializable` using monix shade version `"io.monix" % "shade_2.12" % "1.10.0"`. But works if we use with Scala version `2.12`. Do...

Hi, * I am using `"io.monix" %% "shade" % "1.10.0"` in build.sbt and receiving following warning message: ``` Closing, and reopening {QA sa=memcachedOnAWS, #Rops=0, #Wops=1, #iq=2, topRop=null, topWop=Cmd: 1 Opaque:...

Was wondering if there are plans to incorporate 'touch', 'gat' and 'gats' commands in shade implementation?

Closes #60 * Move mconn.enqueueOperation into prepareFuture and wrap it in try-catch because it can fail. On failure, complete the future with a failure, passing it the caught Throwable

bug
enhancement

The calls to `mconn.enqueueOperation` in SpyMemcachedIntegration can throw IllegalStateException when the queue is full: ``` java.lang.IllegalStateException: Timed out waiting to add Cmd: 1 Opaque: 229348 Key: XXX Cas: 0 Exp:...

This is a much less ambitious version of #50 with the sole aim of migrating to using SpyMemcached's `Transcoder` as a parent class of `Codec`. The main goal is to...

Currently there are 2 ways to get a `TimedOutStatus` from Shade: 1. Timeout from the scheduler: https://github.com/monix/shade/blob/4fc59759d33d54fe500d6131a492f57b9ed29575/src/main/scala/shade/memcached/internals/SpyMemcachedIntegration.scala#L387 2. Timeout from the Spymemcached layer translated into a `TimedOutStatus` https://github.com/monix/shade/blob/4fc59759d33d54fe500d6131a492f57b9ed29575/src/main/scala/shade/memcached/internals/SpyMemcachedIntegration.scala#L427-L428 For the...

Changes in version 2: - change the in-memory cache implementation: - provide an immutable cache data-structure - the mutable cache should be based on the immutable one - also make...

enhancement

Added setting and reading of the storage flags (as described in https://github.com/memcached/memcached/blob/master/doc/protocol.txt) into the public API. The intended point of usage is in the `Codec` trait's methods (i.e. serde operations...