trasigor/memcached

Simple implementation of the basic functions of the Memcached protocol

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/trasigor/memcached

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

This package is not auto-updated.

Last update: 2025-10-08 16:02:51 UTC


README

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');