trasigor/memcached

Simple implementation of the basic functions of the Memcached protocol

Maintainers

Package info

github.com/trasigor/Memcached

pkg:composer/trasigor/memcached

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

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

This package is not auto-updated.

Last update: 2026-02-25 17:47:00 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');