Skip to main content

A high-performance Python object sharing pool with distributed capabilities

Project description

Memory Object Server

A high-performance Python object sharing pool with distributed capabilities.

Features

  • Support for any Python object: Including system-level objects like sockets
  • Asynchronous communication: Built on asyncio for high performance
  • Minimal API: Simple and intuitive interface
  • Distributed support: Multi-node synchronization and discovery
  • Auto-reconnection: Reliable TCP socket communication with automatic reconnection
  • Thread-safe: Concurrent operations are fully supported
  • Port detection: Smart startup with port availability checking

Installation

pip install memory-obj-server

Quick Start

Server

from memory_obj_pool import Server

server = Server(host='0.0.0.0', port=8765)
server.run()

Client

from memory_obj_pool import SyncClient

client = SyncClient(host='localhost', port=8765)

client.put('key', {'data': 'value'})
result = client.get('key')
print(result)  # {'data': 'value'}

Async Client

import asyncio
from memory_obj_pool import Client

async def main():
    client = Client(host='localhost', port=8765)
    await client.put('key', {'data': 'value'})
    result = await client.get('key')
    print(result)

asyncio.run(main())

API Reference

Server

  • Server(host='0.0.0.0', port=8765, max_size=10000): Create a server instance
  • server.run(): Start the server (blocking)
  • await server.start(): Start the server (async)
  • await server.stop(): Stop the server

Client

  • Client(host='localhost', port=8765, auto_reconnect=True): Create async client
  • await client.connect(): Connect to server
  • await client.put(key, obj): Store an object
  • await client.get(key): Retrieve an object
  • await client.remove(key): Remove an object
  • await client.clear(): Clear all objects
  • await client.size(): Get pool size
  • await client.contains(key): Check if key exists

SyncClient

  • SyncClient(host='localhost', port=8765, auto_reconnect=True): Create sync client
  • client.put(key, obj): Store an object
  • client.get(key): Retrieve an object
  • client.remove(key): Remove an object
  • client.clear(): Clear all objects
  • client.size(): Get pool size
  • client.contains(key): Check if key exists

Distributed Usage

from memory_obj_pool import DistributedPool

pool = DistributedPool(
    node_id='node1',
    known_nodes=[('localhost', 8765)]
)
pool.start()

Requirements

  • Python 3.7+
  • dill
  • asyncio

License

Apache License 2.0

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

distributed_memory_pool-0.1.1.tar.gz (10.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

distributed_memory_pool-0.1.1-py3-none-any.whl (12.3 kB view details)

Uploaded Python 3

File details

Details for the file distributed_memory_pool-0.1.1.tar.gz.

File metadata

  • Download URL: distributed_memory_pool-0.1.1.tar.gz
  • Upload date:
  • Size: 10.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.11

File hashes

Hashes for distributed_memory_pool-0.1.1.tar.gz
Algorithm Hash digest
SHA256 ef808421a32dec3bd056d128f80fdc02727e51859d84a52cb0b44a9485913803
MD5 eb75064f88bd25db7071fa1d4d90cd0d
BLAKE2b-256 85039f56f0f97decf8d9a772d55569bb1719069a4eb349b4e3d59e5d325acf62

See more details on using hashes here.

File details

Details for the file distributed_memory_pool-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for distributed_memory_pool-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 48e511483298ba926f3a89e412413265df4c6ac0bbd5c647bc7051939dd07a0b
MD5 59a8e8fb5ca572252aa9aade242ed6f2
BLAKE2b-256 16021baba1dd1fcee01ae2742a2f93d87f9e05a78aa62041e9a7031c76fdd23f

See more details on using hashes here.

Supported by

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