TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What's Faster than Redis

1 pointsby greatoalmost 8 years ago
Is it even possible to create a faster data structure server? Redis is written in C and made the design choices to be very, very fast.

2 comments

onion2kalmost 8 years ago
<i>Is it even possible to create a faster data structure server?</i><p>It&#x27;s probably not reasonably possible to make a faster general solution, but you could implement something that maps your specific needs to memory in a faster way, essentially removing the cases that Redis needs to handle that don&#x27;t apply to your data.
tqhalmost 8 years ago
Yes, <a href="https:&#x2F;&#x2F;github.com&#x2F;fastio&#x2F;pedis" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;fastio&#x2F;pedis</a>