1

Is there a way to use memcahce in java ?

or

Does java have equal or better caching method like memcache ?

Vivek Goel
  • 22,942
  • 29
  • 114
  • 186

2 Answers2

1

Did you not look at the memcached website? It says right there how to use it in Java.

Oliver Charlesworth
  • 267,707
  • 33
  • 569
  • 680
0

Maybe in your usage scenario an in-memory cache is sufficent. There are a lot caching solutions for Java, like JCS, EHCache, cache2k, OSCache.

See also memcache vs java memory for a discussion when to use memcache are a Java only approach.

Community
  • 1
  • 1
cruftex
  • 5,545
  • 2
  • 20
  • 36