numThreads
is the parallelization factor, relative to the number of CPU cores
@/all version 1.8.0
is released: https://github.com/monix/shade/blob/master/release-notes/1.8.md
Note that the organization has changed to io.monix
, along with the GitHub move to monix/shade, so in order to update your dependencies you need this:
"io.monix" %% "shade" % "1.8.0"
Hi @alexandru I'm currently using the client to store compressed data in memcached and found that the Spy client integration is not allowing setting any flags (just hard-setting 0
s). Would it be possible to expose this functionality? Possibly by extending the Codec
interface as
trait Codec[T] {
def serialize(value: T, flags: Int): Array[Byte]
def deserialize(data: Array[Byte], flags: Int): T
}
Thanks!
Future
objects returned by SpyMemcached where not exposing some kind of addListener
, but now they do.