Do client need to worry about multiple memcache servers?

放肆的年华 提交于 2019-12-21 22:27:04

问题


Question:- Does java client need to worry about multiple servers ?

Meaning:- I have given two servers in memcached client, but when i set or get a key from cache, do i need to provide any server related info to it or memcache itself takes care of it??

My knowledge:- Memcache itself takes care due to consistent hashing.

but does spymemcached 2.8.0 provides consistent hashing???


回答1:


Memcached servers are pooling servers. Meaning that you define a pool (a list) of servers and when the Java client attempts a write it writes towards the pool.

It's the client's job to decide which server from the pool will receive and store the value and how it will retrieve the value from that pool.

Basically this allows you to start with one Memcached server (possibly on the same machine) and if push comes to shove you can add a few dozen more servers to the pool without touching the application code.

Since the client is responsible of distributing data across the pool of servers (the client has to choose right memcached server to store/fetch data) there are few distribution algorithms.

One of the simplest is modula. This algorithm distributes keys depending on the amount of memcached servers in pool. If the number of servers in the pool changes, the client won't be able to the find stored data, there will be cache misses. In such case it's better to use consistent hashing.

Most popular java memcached clients spymemached and xmemcached support consistent hashing.

In some use cases instead of directly using the memcached client, caching can be added to a spring application through AOP (interceptors) using simple-spring-memcached or Spring 3.1 Cache Abstraction. Spring Cache currently doesn't support memcached but simple-spring-memcached provides such integration in snapshot build and upcoming 3.0.0 release.




回答2:


MemCached server will manage to store and retrieve key/value by itself. While storing using hash generate the key and store it. While retrieve again hash the given key and find on which server it has been stored and then fetch it, this will take some time.

Instead, there is one approach which can be used for storing and retrieving.

Create one HashMap and store the key with server address as value. Now next time if the same key needs to get then instead of searching, you will get the server address directly from the HashMap and you needs to fetch value from there only. Hence you can save the searching time of MemCahce server.

Hope you understand what i mean.



来源:https://stackoverflow.com/questions/11116293/do-client-need-to-worry-about-multiple-memcache-servers

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!