An open API service indexing awesome lists of open source software.

https://github.com/hechoendrupal/redis-routing

This project replace the routing system in Drupal 8 to use Redis in storage
https://github.com/hechoendrupal/redis-routing

Last synced: 11 months ago
JSON representation

This project replace the routing system in Drupal 8 to use Redis in storage

Awesome Lists containing this project

README

          

Redis for Routing
==========

This project replace the routing db storage to redis storage.

This module use a [Predis](ttps://github.com/nrk/predis) library to connect on Redis service,
in Drupal 8 the composer.json is versioned in core what is a problem because this module need
load the predis library before to load Drupal bootstrap.

### Instalation
```bash
$ cd /path/to/drupal/8
$ composer require "predis/predis":"dev-master"
$ cd modules
$ git clone git@github.com:dmouse/redis-menu.git routdis
$ drush en -y routdis
$ drush cr -y
```

### Confirm is working
```bash
$ redis-cli KEYS "router:*"
```

### Minimal requirements
* composer
* drush
* redis
* git