trasigor/memcached

Simple implementation of the basic functions of the Memcached protocol

dev-master 2019-11-11 13:14 UTC

This package is not auto-updated.

Last update: 2024-07-03 10:21:15 UTC


README

Memcached

Simple implementation of the basic functions of the Memcached protocol

Installation

composer require trasigor/Memcached

Usage

use Trasigor\Memcached;

$mc = new Memcached\Memcached();
$mc->set('key', 'val');
$val = $mc->get('key');
$mc->delete('key');