Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# render_boost
Speedup page delivery by caching render based on checksum.
# Render Boost

This module require kernel patch.
```
cd document_root/sites/all/modules/
git clone https://github.com/itpatrol/render_boost.git
cd ../../../
cat sites/all/modules/render_boost/render_boost.patch| patch -p1
Speed-up page delivery by caching render based on checksum.

## Installation

This module requires core patch:

```shell
git clone https://github.com/itpatrol/render_boost.git sites/all/modules/
patch -p1 < sites/all/modules/render_boost/render_boost.patch
```
3 changes: 2 additions & 1 deletion render_boost.install
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/**
* @file
* Module installation and updates.
*/

/**
Expand All @@ -10,5 +10,6 @@
function render_boost_schema() {
$schema['cache_render'] = drupal_get_schema_unprocessed('system', 'cache');
$schema['cache_render']['description'] = 'Cache table used to store render cache data, if database caching setting enabled.';

return $schema;
}
Loading