Skip to content

idanmo/python-memcached-udp

Repository files navigation

Python Memcached UDP Client

https://travis-ci.org/idanmo/python-memcached-udp.svg?branch=master

A simple UDP Memcached client implementation written in Python.

Implemented for my own needs, use at your own risk :-)

Python Compatibility

>= 2.7 (3 included)

Supported Operations

  • set
  • get

Installation

pip install python-memcached-udp

Usage

import memcached_udp

client = memcached_udp.Client([('192.168.0.1', 11211), ('192.168.0.5', 11211)])
client.set('key1', 'value1')
r = client.get('key1')

About

A simple UDP Memcached client implementation written in Python.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages