Ankur Chauhan
Ankur Chauhan

Reputation: 1390

Coding a caching server

I have been researching and have some few ideas about a distributed caching system for a in memory key-value store with replication and all the jazz associated. SO I wanted to know from the community what is the best language/framework/technology mix i should go for.

Upvotes: 0

Views: 50

Answers (1)

axel_c
axel_c

Reputation: 6806

Surely you know there's stuff like memcached out there? It's powering some of the busiest sites on the web. No need to reinvent the wheel here.

If you're going write your own anyway, you want to make it as fast as possible, so I'd choose C or C++. Fast, widely supported, easy to write bindings for other languages.

Upvotes: 1

Related Questions