summaryrefslogtreecommitdiff
path: root/lib/banzai.rb
Commit message (Collapse)AuthorAgeFilesLines
* Resolve "DashboardController#activity.json is slow due to SQL"Francisco Javier López2017-11-061-2/+2
|
* Add markdown cache columns to the database, but don't use them yetNick Thomas2016-10-071-0/+4
| | | | | | | | | | | | This commit adds a number of _html columns and, with the exception of Note, starts updating them whenever the content of their partner fields changes. Note has a collision with the note_html attr_accessor; that will be fixed later A background worker for clearing these cache columns is also introduced - use `rake cache:clear` to set it off. You can clear the database or Redis caches separately by running `rake cache:clear:db` or `rake cache:clear:redis`, respectively.
* Object renderer read_multi rendered entries from Cacheread-multi-rendered-objectsPaco Guzman2016-07-121-0/+4
|
* Move pre_process into render_resultremove-banzai-pre-processYorick Peterse2016-06-211-4/+0
| | | | | | | | | | | The method Banzai::Renderer.pre_process would always be called, regardless of whether the Markdown to render was already cached or not. In cache the document _was_ cached the output of the pre-processing pipeline was ignored resulting in it doing nothing but wasting CPU cycles. This commit moves Banzai::Renderer.pre_process into Banzai::Renderer.render_result so that it's _only_ used when needed.
* Add a PreProcessPipelineRobert Speicher2016-03-021-0/+4
|
* Move Markdown/reference logic from Gitlab::Markdown to BanzaiDouwe Maan2015-12-151-0/+13