eredis_pool
eredis_pool copied to clipboard
eredis_pool is Pool of Redis clients, using eredis and poolboy.
Hi, with the default `{env, []}` in eredis_pool.app.src, I could not start the application before I start/add a pool. Can it be modified so that application can start without starting...
Just a tiny patch to add missing dependencies on eredis and poolboy, and to retrieve the application version from the git tag (which should be added).
{global_or_local, local} or {global_or_local, global}. If global, then eredis_pool:qp({global,dbsrv}, Pipeline). Otherwise eredis_pool:qp(dbsrv, Pipeline).
Database in Redis are just integer, not names. Reference: http://stackoverflow.com/questions/6618291/why-does-redis-use-integer-database-numbers When you create an eredis_pool, with a database name, you have the following crash:(push- ``` api@mr-macbook)3> 21:49:22.213 [error] CRASH REPORT...
using the master branch with the default config fails. i confirmed i was able to connect to the same IP+port and query the redis server. it build ok but a...
eredis_pool:start() tries to connect to a localhost redis database because of the dbsrv configs if there is no local redis server, there will be a connection error.
Hi, I was just reading through your code (planning to use poolboy for a connection pool myself), when I noticed something weird in eredis_pool:q/3: q(PoolName, Command, Timeout) -> Worker =...