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
- Host: GitHub
- URL: https://github.com/hechoendrupal/redis-routing
- Owner: hechoendrupal
- Created: 2014-05-11T19:50:35.000Z (about 12 years ago)
- Default Branch: 8.x-1.x
- Last Pushed: 2014-07-13T02:25:02.000Z (almost 12 years ago)
- Last Synced: 2025-06-07T04:08:23.676Z (about 1 year ago)
- Language: PHP
- Size: 200 KB
- Stars: 5
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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