Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a auto cache framework for playframework?

I developed my service using Django. For Django, there is a johnny cache(http://packages.python.org/johnny-cache/). Johnny cache apply monkey patch to django models and automatically invalidate cache when model is created, modified, and deleted. I love it because it's so simple.

I have a plan to make my new service using playframework because playframework is awesome, but I couldn't find any appropriate cache framework. Anybody can recommend me a nice cache framework for playframework?

share|improve this question

3 Answers

If your are talking about :

  • Models caching : Done through hibernate, no need to implement anything
  • Data caching : Play embeed Cache API to store what you want serialized. You can enable a MemCache implementation if you need. For play 2.0 there are also plugins for Memcache or Redis.
  • Template caching : You can have a look at Rythm for that
share|improve this answer

I'm not sure I understand your question correctly, but it seems you want to use Play Cache. Play has a very good documentation, please check it.

share|improve this answer

I'm not sure if I understand you question as well, but if you are looking for cache of model objects, then go through documentation of Hibernate caching -> Play model is built on top of Hibernate, which itself includes various caching methods. I do not have much experience with it myself yet, but the using of such second level cache is as simple as annotating a model class with a @Cache annotation. Google for "Hibernate @Cache".

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.