> I'm currently working to port memcached to MPSoCs, related to some > project which use memcahed as benchmark. I have some questions, it > would be great if you give your views on this, > a) do you think, is it worth to port memcached to MPSoC which have low > memory and cache? Do you have any ideas for memcached for embedded > applications?
Not sure? what's the use case? memcached might be usable if you have many different devices and need a clever way to share a cache. if you're using memcached locally on a machine, never accessing it over the network, that's a huge waste. > b) how does memcached behaves on single server scenario? Is it just > like hash table or more than that? http://memcached.org/tutorial - brains are all in the client, one server or ten the server itself doesn't care. If you're intending on solely using it via localhost that's probably a bad idea. just use an LRU library to deal better with your limited resources.
