Ask HN: Why hasn't x86 caught up with Apple M series?
449 points by stephenheron 6d ago 620 comments
Ask HN: Did Developers Undermine Their Own Profession?
7 points by rayanboulares 11h ago 15 comments
Show HN: Feox Server, a Rust based, drop-in replacement for Redis
2 mehrant 0 9/1/2025, 6:08:20 PM github.com ↗
After the release of Feox DB (https://github.com/mehrantsi/feoxdb), I received a number of questions/requests about a potential service layer on top. I spent the last week and created this Redis compatible server for it which required 2 version releases on Feox itself as well.
Benchmark:
Feox:
redis-benchmark -h 127.0.0.1 -p 6379 -t set,get -n 1000000 -r 1000000 -c 50 -P 64 -q
SET: 4016064.25 requests per second, p50=0.639 msec
GET: 5208333.50 requests per second, p50=0.335 msec
Redis:
redis-benchmark -h 127.0.0.1 -p 6379 -t set,get -n 1000000 -r 1000000 -c 50 -P 64 -q
SET: 1647446.50 requests per second, p50=1.775 msec
GET: 1976284.62 requests per second, p50=1.455 msec
Please check it out and consider contributing :)
No comments yet