Git Product home page Git Product logo

rpyc-mem's Introduction

RPyC Mem

(RPyC) (Mem)ory

Overview

  • RPyC-Mem is a light weight shared memory alternative for Python implemented using RPyC
  • RPyC-Mem has a ready to run service, which hosts network based shared memory to be consumed by different processes.
  • RPyC-Mem has proxy classes to interact with the shared memory objects effectively.

Getting Started

  1. Install RPyC-Mem from pypi

    pip install rpyc-mem
  2. Run the RPyC-Mem server

    from rpyc_mem.service import RpycMemService
    
    rs = RpycMemService('localhost', 18813)
    rs.run()
  3. Share data between processes

    Client 1:

    Using RPyC Memory Session

    from rpyc_mem.session import RpycMemSession
    
    rses = RpycMemSession('localhost', 18813)
    rm = rses.rmem('unique-key', robj_gen=lambda: rses.rmod().list([1, 2]))
    
    print(rm)    # [1, 2]

    Client 2:

    Using underlying RPyC Memory classes

    from rpyc_mem.connect import RpycMemConnect
    from rpyc_mem.client import RemoteModule, RpycMem
    
    rc = RpycMemConnect('localhost', 18813)
    rp = RemoteModule(rc)
    rm = RpycMem(rc, 'unique-key', robj_gen=lambda: rp().list([1, 2, 3]))
    
    print(rm)    # [1, 2]
    rm.append(3)

    Client 1 continued... :

    print(rm)    # [1, 2, 3]
  4. For more details, check out the API-Reference, User-Guide

rpyc-mem's People

Contributors

m0hithreddy avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.