Skip to main content

Build RPC pattern via redis connection

Project description

rpcviaredis
==========
*Using redis server to build RPC environment - by Oscar LASM*

----------
rpcviaredis intended to provide a simple tool for establishing a pattern RPC over an installation Redis.
Implement python, it is composed of:

- **Server** which serve remote commands
- **Client** Use to connect and call commands hosted on server
- **Transport protocol** Use to pack and unpack request and response during communication process

**Examples**:

Server implementation:

from rpcviaredis import *

class DummyServer(ServerRPC):

def sum(self, x, y):
return Response(response=x+y, exception=None, reason=None, return_code=200)

def naive_div(self, x, y):
return Response(response=x/y, exception=None, reason=None, return_code=200)

def multiplication(self, x, y):
return Response(response=x*y, exception=None, reason=None, return_code=200)

if __name__ == "__main__":
import redis

r = redis.StrictRedis(db=2)
s = DummyServer(r, 'test-rpc', transport_klass=JSONTransport)
try:
s.start()
except KeyboardInterrupt:
pass
finally:
s.stop()

Client Implementation

import redis
from rpcviaredis import Client

r = redis.StrictRedis(db=2)
c = Client(r, 'test-rpc', transport_klass=JsonTransport)
retval = c.sum(1,2)
print(retval.response) # print 3

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rpcviaredis-0.1.1.tar.gz (5.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page