Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fwolf/memcached-client
PHP memcached client class, for simulate php_memcached.dll for windows platform.
https://github.com/fwolf/memcached-client
Last synced: about 10 hours ago
JSON representation
PHP memcached client class, for simulate php_memcached.dll for windows platform.
- Host: GitHub
- URL: https://github.com/fwolf/memcached-client
- Owner: fwolf
- Created: 2013-05-07T07:22:43.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-11T09:59:38.000Z (about 10 years ago)
- Last Synced: 2023-03-11T04:13:18.750Z (over 1 year ago)
- Language: PHP
- Size: 210 KB
- Stars: 42
- Watchers: 10
- Forks: 22
- Open Issues: 1
-
Metadata Files:
- Readme: readme.rst
Awesome Lists containing this project
README
.. -*- mode: rst -*-
.. -*- coding: utf-8 -*-===========================================================================
PHP Memcached Client (simulator)
===========================================================================As there has no php memcached extension for windows now, it's difficult to
build develop envionment, so this class will be helpful.Inspried by: http://github.com/joonas-fi/xslib-memcached
Usage:
Just as php_memcached extension, new Memcached object and etc.
::
$m = new Memcached();
$m->addServer('localhost', 11211);$m->set('foo', 'bar');
$m->get('foo');Supported method:
- addServer
- addServers
- delete
- get
- getOption
- getResultCode
- getResultMessage
- getServerList
- increment
- set
- setOption
- setOptionsNeed disable memcached extension of PHP to run PHPUnit testcase.
License: MIT