bustle / radredis

Basic redis backed object modeling for Node.
19 stars 3 forks source link

update dependencies #29

Closed jqyu closed 8 years ago

jqyu commented 8 years ago

Noticed the deps were out of date while laying down the groundwork for radgraph. Only notable change here is that we use a redis.pipeline() instead of a redis.multi() for findByIds() since it isn't a true transaction, there's nothing to be gained by locking redis during execution

As a consequence, hgetallToObjects method is no longer needed, as ioredis itself now implements the transformation.

southpolesteve commented 8 years ago

@jqyu awesome! thanks