Mike Perham

Results 175 comments of Mike Perham

It looks like MetaStore doesn't support native TTL at all so Redis will eventually fill up with cruft anyways.

Please switch to something other than test-spec. test-spec will never work on Ruby 1.9 so it's difficult to test rack-cache on 1.9 without manual fiddling.

Have you considered finding a new maintainer? I know you've been in the scala community for a while. Perhaps someone more active in Ruby could help? For the record, I'm...

2.8.3 > On Dec 30, 2013, at 7:13, Ryan LeCompte [email protected] wrote: > > Hmm, I haven't seen that particular error before. Which version of redis is this? In this...

I believe this might be something new in 2.8. Slaves are now read only by default. > On Dec 31, 2013, at 0:46, arohter [email protected] wrote: > > You must...

I can see a use case for idle connection reaping. I don't like the thought of spinning up a single thread just to reap the pool every 5 minutes (for...

What's old is new again. Sigh. https://github.com/redis/redis-rb/issues/516

This is ridiculous, there's no reason for every client to have their own bespoke method name for the same purpose. I would implement it as `conn.close if conn.respond_to?(:close)` and force...

Reaping will be opt-in; users need to enable it. The usecase is SaaS databases that have connection limits and/or autoscale based on connections in use. Once connections become idle, they...

@zaidakram send a PR to implement it. No one has done the work.