Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Php Memcached | 974 | 2 months ago | 46 | other | C | |||||
memcached extension based on libmemcached library | ||||||||||
Homebrew Extensions | 407 | 2 days ago | 2 | mit | Ruby | |||||
:beers: Homebrew tap for PHP extensions | ||||||||||
Cache | 109 | 13 | 8 | 8 months ago | 22 | June 11, 2020 | 4 | other | PHP | |
A thin PSR-6 cache wrapper with a generic interface to various caching backends emphasising cache tagging and indexing. | ||||||||||
Php_memcached_dll | 108 | 9 days ago | mit | |||||||
windows php-memcached dll files | ||||||||||
Cache | 18 | a day ago | mit | PHP | ||||||
Aplus Framework Cache Library | ||||||||||
Enyim.caching | 17 | 4 months ago | apache-2.0 | C# | ||||||
High performance Memcached client, incorporating both synchronous and asynchronous with various transcoders (Json.NET BSON, MessagePack, Protocol Buffers) on .NET | ||||||||||
Simple Cache | 6 | 3 years ago | 1 | May 03, 2017 | other | PHP | ||||
The PSR-16 extension to Apix-Cache | ||||||||||
Leveldb_engine | 5 | 10 years ago | C | |||||||
memcached leveldb engine - stores data on leveldb | ||||||||||
Cacheorm | 4 | 2 years ago | n,ull | mit | Python | |||||
A cache-based python ORM -- supports Redis/Memcached/InMemory/FileSystem backends, and JSON/Msgpack/Pickle/Protobuf serializers. | ||||||||||
3d3paste | 4 | 8 years ago | Python | |||||||
A simple pastebin and shorturl combined service |
This is the PECL memcached extension, using the libmemcached library to connect to memcached servers.
memcached is a high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load.
$ phpize
$ ./configure
$ make
$ make test
php-memcached 3.x:
php-memcached 2.x:
libmemcached or the new libmemcached-awesome version 1.0.18 or higher is recommended for best performance and compatibility with memcached servers.
igbinary is a faster and more compact
binary serializer for PHP data structures. When installing php-memcached from
source code, the igbinary module must be installed first so that php-memcached
can access its C header files. Load both modules in your php.ini
at runtime
to begin using igbinary.
msgpack is a faster and more compact data structure
representation that is interoperable with msgpack implementations for other
languages. When installing php-memcached from source code, the msgpack module
must be installed first so that php-memcached can access its C header files.
Load both modules in your php.ini
at runtime to begin using msgpack.