I need cache for my web application, it stores some small/medium size objects to cache and possibly some max 1-2mb files to cache. What open source solution would be good for this usage? Cache should be easy as Google App Engine cache (example. cache.put(“key”, “value”); cache.get(“key”);). I use Google Guice and Servlet, nothing else (so I don’t need any Spring etc. recommendations) and I’m using Jetty to run my application.
Share
You can either use:
As you can see above, both support GAE well.