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

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -