Justin Kaeser
Justin Kaeser
Once the protocol and clients evolve independently, they will need to be able to negotiate the bsp protocol version they speak. Since both server and clients are free to implement...
ClusterConnection has a [blocking await call for connection initialization](https://github.com/scredis/scredis/blob/master/src/main/scala/scredis/io/ClusterConnection.scala#L59). On large clusters, with the default timeout (2s), this can fail because the nodes are initialized sequentially. The intialization can still...
Redis 3.2 adds a number of new commands and a few changes: https://raw.githubusercontent.com/antirez/redis/3.2/00-RELEASENOTES Relevant action items from changelog - [x] Geo indexing support via GEOADD, GEORADIUS and other commands. See...
There is a new very powerful BITFIELD command. Check the documentation here: http://redis.io/commands/BITFIELD (Continued from #4)
The current cluster slot cache is not very memory efficient: Is uses a vector and saves node information for every slot individually. Typical clusters will have large regions of slots...
## steps 1. Create a project that references an external `RootProject`: ```scala name := "intellij-scala-plugin-bug" version := "0.1" scalaVersion := "2.13.3" Global / scalaVersion := "2.13.3" lazy val externalProject =...
The MessageIdEmitter and StreamEmitter emit methods allow only AnyRef parameters, unlike the equivalent StormSpout methods, which allow Any parameters. This prevents me from emitting e.g. Int values when using a...
Simpler seed
This seed seems too complicated for a minimum sbt project, in the way it sets up the project and dependencies. I suggest changing this template to a minimal-boilerplate version and...