Re: [go-nuts] Memcached replacement in GO!

2016-11-17 Thread Slawomir Pryczek
Interesting, thanks for the link... wasn't able to find this in google when i was looking for some working extension the last time... we'll try it out for some services :) W dniu czwartek, 17 listopada 2016 02:51:38 UTC+1 użytkownik Hirotaka Yamamoto (ymmt2005) napisał: > > > Basically the me

Re: [go-nuts] Memcached replacement in GO!

2016-11-16 Thread Hirotaka Yamamoto (ymmt2005)
> Basically the memcache*d* extension for PHP was buggy yeah, and that's the reason I wrote our own memcached client for PHP5 & 7. We believe it's very stable as we do not experience even a single failure in our cloud service for years. Please try out! https://github.com/cybozu/php-yrmcds/ 201

Re: [go-nuts] Memcached replacement in GO!

2016-11-16 Thread Slawomir Pryczek
Here is nice page describing the issue: http://developers.nk.pl/tag/gc/ >The reality in nk.pl was that evictions of valid items happened hundreds >of times per second even though there were 50% of expired items, >because there is no inherent correlation between TTL and the pattern of usage. S

Re: [go-nuts] Memcached replacement in GO!

2016-11-16 Thread Jesper Louis Andersen
On Wed, Nov 16, 2016 at 3:10 PM Slawomir Pryczek wrote: > > - Much better Garbage Collection mechanism, that isn't skipping items with > short TTLs like LRU, so memory is not occupied with garbage data even if > item TTLs differ a lot. > > Could you expand on what this problem is? It sounds like