-3

Have you any idea for implementing caching of data on server side in load balancing environment in java?

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
  • Not really. A cache for what? What should it do, how should it behave? Why does a simple `HashMap` not work? Should it fit into memory? What have you already looked at, what have you tried? Guava, Caffeine, JCache, Memcached, redis, ehcache, cache2k, imcache, jcabi cache? One of those, probably. Did you look at [this question](http://stackoverflow.com/questions/230649/) or [this question](http://stackoverflow.com/questions/575685/)? – Petr Janeček Jun 22 '15 at 17:00

1 Answers1

0

You could look at memcached or redis for a shared cache ?

LenW
  • 3,054
  • 1
  • 24
  • 25