Skip to content

Latest commit

 

History

History
46 lines (26 loc) · 872 Bytes

File metadata and controls

46 lines (26 loc) · 872 Bytes

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')