added asLong and changed most of the commands that return Option[Int] to be Option[Long]#41
Conversation
…ry useful in incr commands in particular
|
Thinking if this will create any issues with existing users .. what do you think ? |
|
yeah, this will break the API for most of the users. but it's very important, an INCR command will fail if it exceeded Int.MaxValue while on the database it can hold up to Long.MaxValue |
|
Thanks for the patch. Will merge over the weekend. |
added asLong and changed most of the commands that return Option[Int] to be Option[Long]
|
when are you supposed to publish a new version on your mvn repo so I can directly use it? |
|
I pushed it to sonatype just now .. It may take some time to sync with Maven Central .. Thanks |
|
is this the 2.7 version? seems that you pushed that for scala 2.9.2 only, I need it for 2.9.1 |
|
oops .. didn't know u need for 2.9.1 .. let me do a build and push .. pls give me a day .. |
|
ok .. got some time and pushed to sonatype .. maven central sync will happen some time .. |
an integer in redis is a signed 64-bit, this is Long in Scala.