You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to open multiple separate connections with this library? Right now I've got some code that runs a transaction for a HTTP request, but during the time the transaction is open other requests execute Redis commands and they also get queued in the transaction. Is there a way I can open up multiple connections?
The text was updated successfully, but these errors were encountered:
@Stratus3D you can start as many exredis clients as you want, but I would recommend you to use Redix with poolboy (redix_pool) or just follow the instructions here.
I have some ideas about redis clients adapter inside Redis library, where I can implement connection pooling too, but that thing on very early stage #79
Is it possible to open multiple separate connections with this library? Right now I've got some code that runs a transaction for a HTTP request, but during the time the transaction is open other requests execute Redis commands and they also get queued in the transaction. Is there a way I can open up multiple connections?
The text was updated successfully, but these errors were encountered: