2017 © Pedro Peláez
 

project laravel-mongodb-cache

A MongoDB cache driver for Laravel

image

alfa6661/laravel-mongodb-cache

A MongoDB cache driver for Laravel

  • Thursday, December 7, 2017
  • by alfa6661
  • Repository
  • 1 Watchers
  • 0 Stars
  • 509 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 4 Versions
  • 27 % Grown

The README.md

Laravel Mongodb Cache

A MongoDB cache driver for Laravel, (*1)

Installation

Make sure you have jenssegers\mongodb installed before you continue., (*2)

Install using composer:, (*3)

composer require alfa6661/laravel-mongodb-cache

Add the session service provider in app/config/app.php:, (*4)

'Alfa6661\Mongodb\Cache\MongoCacheServiceProvider',

Add mongodb cache store in app/config/cache.php, (*5)

'stores' => [
    /...

    'mongodb' => [
        'driver' => 'mongodb',
        'table' => 'cache',
        'connection' => null,
    ],
],

Update your .env file and change the CACHE_DRIVER to mongodb, (*6)

CACHE_DRIVER=mongodb

The Versions

07/12 2017

dev-master

9999999-dev

A MongoDB cache driver for Laravel

  Sources   Download

MIT

The Requires

 

07/12 2017

v2.0.1

2.0.1.0

A MongoDB cache driver for Laravel

  Sources   Download

MIT

The Requires

 

04/10 2017

v2.0.0

2.0.0.0

A MongoDB cache driver for Laravel

  Sources   Download

MIT

The Requires

 

06/09 2017

v1.0.0

1.0.0.0

A MongoDB cache driver for Laravel

  Sources   Download

MIT

The Requires