c# - Possible to share cache item amongst multiple windows services? -
is possible share cached item amongst several windows services?
list<getportednumbersresult> col = (list<getportednumbersresult>)result.tolist(); var cache = memorycache.default; cacheitempolicy policy = new cacheitempolicy(); cache.add(new cacheitem("portedcol", col), policy);
adrian thompson phillips hit nail on head distributed cache. think best bet.
the thing i'll add, consider app fabric (http://msdn.microsoft.com/en-us/windowsserver/ee695849.aspx) since it's microsoft's version of distributed cache.
you can run app fabric nodes on same machine has windows services. don't need dedicated cache nodes in cluster.
Comments
Post a Comment