2017 © Pedro Peláez
 

library flint-redis

wrapper around flintstone and predis

image

suven/flint-redis

wrapper around flintstone and predis

  • Tuesday, April 25, 2017
  • by suven
  • Repository
  • 1 Watchers
  • 0 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

suven/flint-redis

Build Status Scrutinizer Code Quality Code Coverage, (*1)

Super-thin and opinionated wrapper around flintstone and predis., (*2)

Enables you to store multiple key-value collections with redis or the filesystem., (*3)

Background

Why would I want that?

If you are writing apps that need to cache data in collections, you would want to use some fast key-value-store such as redis or memcached. Unfortunally, redis is not always available - especially on shared hosters. In those scenarios, if you still need to cache stuff, the filesystem is often a better choice, then not to cache., (*4)

Y U NO PSR-6?!

There are plenty ready-to-use caching-adapters out there, which implement some common interfaces. Those adapters are often well tested, powerful and well maintained. They also might give you more freedom in choosing more providers. If you also need to offer support for memcached or db-caching, you should choose one of those., (*5)

That said, the power of this library comes from the fact that it's minimal and opinionated. It provides you with exactly two options for caching-providers and comes with all functions, those two providers share., (*6)

Installation

composer require suven/flint-redis, (*7)

Usage

use Suven\FlintRedis\FlintRedisCacheFactory;

if ($youWantToUseRedis) {
    FlintRedisCacheFactory::$strategy = FlintRedisCacheFactory::STRATEGY_REDIS;
    FlintRedisCacheFactory::$options = [
        "yourOptions" => "that you'd like to pass to predis"
    ];
}

if ($youWantToUseFlintstone) {
    FlintRedisCacheFactory::$strategy = FlintRedisCacheFactory::STRATEGY_FLINTSTONE;
    FlintRedisCacheFactory::$options = [
        "yourOptions" => "that you'd like to pass to flintstone"
    ];
}

// Get a new collection for settings
$settings = FlintRedisCacheFactory::create("settings");

// Set a value
$settings->set('target', 'worldDomination');
$settings->set('favNumber', 42);
$settings->set('someBool', true);
$settings->set('youCanStoreAnythingPHPcanSerialize', [
    'foo' => 'bar'
]);

// Get a value by key
$favNumber = $settings->get('favNumber');

// Get all values
$allSettings = $settings->getAll();

// Get all keys
$settingKeys = $settings->getKeys();

// Delete a value by key
$settings->delete('favNumber');

// Delete all settings
$settings->flush();

The Versions

25/04 2017

dev-master

9999999-dev

wrapper around flintstone and predis

  Sources   Download

The Requires

 

The Development Requires

by Sven

25/04 2017

v1.0.0

1.0.0.0

wrapper around flintstone and predis

  Sources   Download

The Requires

 

The Development Requires

by Sven

16/04 2017

v1.0-BETA

1.0.0.0-beta

wrapper around flintstone and predis

  Sources   Download

The Requires

 

The Development Requires

by Sven

16/04 2017