All Projects → esnme → Ultramemcache

esnme / Ultramemcache

Ultra fast memcache client written in highly optimized C++ with Python bindings.

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Ultramemcache

memcache
Node.js memcached client with the most efficient ASCII protocol parser
Stars: ✭ 26 (-90.08%)
Mutual labels:  memcached
shell-scripts
my-scripts
Stars: ✭ 87 (-66.79%)
Mutual labels:  memcached
Search Ads Web Service
Online search advertisement platform & Realtime Campaign Monitoring [Maybe Deprecated]
Stars: ✭ 30 (-88.55%)
Mutual labels:  memcached
mdserver-web
Simple Linux Panel
Stars: ✭ 1,064 (+306.11%)
Mutual labels:  memcached
fastapi-cache
fastapi-cache is a tool to cache fastapi response and function result, with backends support redis and memcached.
Stars: ✭ 375 (+43.13%)
Mutual labels:  memcached
magento-cluster
Highly Available and Auto-scalable Magento Cluster
Stars: ✭ 21 (-91.98%)
Mutual labels:  memcached
aiohttp-cache
A cache system for aiohttp server
Stars: ✭ 39 (-85.11%)
Mutual labels:  memcached
b52
b52 is a fast experimental Key/value database. With support for the memcache protocol.
Stars: ✭ 20 (-92.37%)
Mutual labels:  memcached
bitrix-memcached
Bitrix Cache with php-memcached / Кэш Битрикс на Memcached
Stars: ✭ 13 (-95.04%)
Mutual labels:  memcached
memcached
Memcached Operator for Kubernetes
Stars: ✭ 18 (-93.13%)
Mutual labels:  memcached
WP-Stash
Bridge between WordPress and StashPHP, providing a PSR6-compliant caching system for WordPress
Stars: ✭ 31 (-88.17%)
Mutual labels:  memcached
EnyimMemcachedCore
A Memcached client for .NET Core. Available on Nuget https://www.nuget.org/packages/EnyimMemcachedCore
Stars: ✭ 143 (-45.42%)
Mutual labels:  memcached
bmemcached-rs
Rust binary memcached implementation
Stars: ✭ 24 (-90.84%)
Mutual labels:  memcached
django-pymemcache
A Django cache backend built in Pinterest's pymemcache.
Stars: ✭ 40 (-84.73%)
Mutual labels:  memcached
ddos
Simple dos attack utility
Stars: ✭ 36 (-86.26%)
Mutual labels:  memcached
wp-serverinfo
Display your host's PHP, MYSQL & memcached (if installed) information on your WordPress dashboard.
Stars: ✭ 15 (-94.27%)
Mutual labels:  memcached
php-mvc
PHP MVC ⦿ Dockerized • Composer • RESTful API • Memcached • cron • WebSocket
Stars: ✭ 17 (-93.51%)
Mutual labels:  memcached
anchor
High-Performance Erlang Memcached Client
Stars: ✭ 15 (-94.27%)
Mutual labels:  memcached
cache-trace
A collection of Twitter's anonymized production cache traces.
Stars: ✭ 89 (-66.03%)
Mutual labels:  memcached
BuildPhp
php and web env manager for mac,include apache nginx php mysql memcached redis node with mutable version, and SSL make, file info... extend tools
Stars: ✭ 111 (-57.63%)
Mutual labels:  memcached

ultramemcache

ultramemcache is an ultra fast Memcache client written in highly optimized C++ with Python bindings.

To install it just run Pip as usual::

$ pip install umemcache

ultramemcache provides a Client class you can use to interact with Memcache::

>>> import umemcache
>>> c = umemcache.Client('127.0.0.1:11211')
>>> c.connect()
>>> c.set('key', 'value')
'STORED'
>>> c.get('key')[0]
'value'

By design, ultramemcache limits the size of Memcache items to 1000*1000 bytes, but you can change this limitation by using the max_item_size argument when creating a Client class.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].