Skip to content

Latest commit

 

History

History
119 lines (88 loc) · 3.73 KB

README.md

File metadata and controls

119 lines (88 loc) · 3.73 KB

py-redis-server

With this module, you can stand up a python TCP server that speaks the Redis Protocol. The Redis Protocol is light-weight wire protocol with clients in every mature language. These clients are designed for robust and persistent connections suitable for low latency LAN network traffic, making them ideal for IPC.

This module includes two parts: the protocol codecs, and a server. The server uses the Asyncore module, a non-blocking framework bundled with Python since (at least) 2.4.

This server implementation joins others from other languages, enabling effortless IPC within a polyglot ecosystem:

It is up to you to roll your own semantics and implement command handlers, but that is left as an exercise for the developer.

Running the example

You'll find trivial implementations here.

git clone https://github.com/ninowalker/py-redis-server.git

cd py-redis-server
python setup.py build

python examples/simple.py 33333 echo & 

redis-cli -p 33333 hello world

Benchmarks

Run on a Macbook Pro, 2.7GHz i7, 8GB RAM.

Locally, redis is blazing fast:

$ redis-benchmark -p 6379 incr foo 1
====== incr foo 1 ======
  10000 requests completed in 0.17 seconds
  50 parallel clients
  3 bytes payload
  keep alive: 1
...
60606.06 requests per second

Locally, the python server is pretty good, and, as you're probably implementing business logic and not data store-logic, it's still blazingly fast.

$ redis-benchmark -p 33333 incr foo 1
====== incr foo 1 ======
  10000 requests completed in 0.73 seconds
  50 parallel clients
  3 bytes payload
  keep alive: 1
...
13888.89 requests per second

Prerequisites

redis >= 2.4.1

An echo server

from rediserver.net import AsyncoreServer
import asyncore

def echo(cmd, response, request):
    """Echo back input from the client.
    `cmd`: an array of strings that constitute the command, e.g. ['incr', 'foo', '1']
    `response`: a handle for sending data. Supports:
       .encode(list|tuple|bool|int|long|string)
       .status(msg="OK")
       .error(msg)
    `request`: the connection handler, generally unused.
    """
    response.encode(cmd)


port = 12345
s = AsyncoreServer('', port, callback=echo)
asyncore.loop() # start the event loop.

License (MIT)

Copyright (c) 2013 Nino Walker

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.