Matthew Sigley

Results 29 comments of Matthew Sigley

I have disabled the http authentication by default to preserve the existing behavior. I must say though that it is not a very good idea security wise to have the...

My cache size went down from my max of 800mb to ~300mb after implementing compression. It is also highly recommended to compress your values in large scale redis deployment in...

If the cache is constantly garbage collecting because it is full its slower. If nothing else this should be an option that can be enabled behind a definition.

The speed before all else makes me question why we are using phps serialize function instead of phpredis's serialization. Php phpredis's serialization is performed and executed in complied c code...

Compression is definitely faster for large keys and helps with the RAM usage across the board. My implementation uses a compression marker with the intention of disabling compression somehow for...

Id argue that if you are using a modern version of php such as php fpm or php on windows the cpu use is nothing.

I hashed the abspath with crc32 in my implementation. Big key lengths are bad for redis performance. Removing the : on empty cache salts allows the redisinsight memory profiler to...

Yes there are. The race condition occurs on sets to different keys on concerent requests. It occurs because all of the values are stored in one big blob instead of...

The fix for redis would be to replace the alloptions key with an mget.

Good catch Bruno. This regression is on me since I updated the password list. I'll look at decrypting them tomorrow and submit a pr. -----Original Message----- From: "Bruno G." [email protected]...