2

I have a rails app which displays static markdown from an sqlite database. Is there any way to "precompile" the markdown files like for css/js so that markdown does not need to be re-rendered for each request? If so, how do I do it?

There was a question similar to this but I don't know how to cache markdown either. Some websites suggest that rendering markdown adds very little overhead to the app. Is this correct?

avinashbot
  • 1,177
  • 1
  • 11
  • 25

1 Answers1

2

I would just cache the rendered output. Use something like this: http://railscasts.com/episodes/387-cache-digests

rainkinz
  • 10,082
  • 5
  • 45
  • 73