debasishg / scala-redis

A scala library for connecting to a redis server, or a cluster of redis nodes using consistent hashing on the client side.
1.02k stars 219 forks source link

Implement evalSHABulk to parse received as bulk #171

Closed Uxio0 closed 8 years ago

Uxio0 commented 8 years ago

It now parses result as evalBulk does. Actually, the only difference between EVAL and EVALSHA should be that EVAL receives a script and EVALSHA receives SHA of the script, but it should behave the same and parse the received data the same way.

I wrote a new function evalSHABulk to avoid breaking anyone's code.

debasishg commented 8 years ago

Thanks!