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 instanceserver.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 clientawait client.connect(): Connect to serverawait client.put(key, obj): Store an objectawait client.get(key): Retrieve an objectawait client.remove(key): Remove an objectawait client.clear(): Clear all objectsawait client.size(): Get pool sizeawait client.contains(key): Check if key exists
SyncClient
SyncClient(host='localhost', port=8765, auto_reconnect=True): Create sync clientclient.put(key, obj): Store an objectclient.get(key): Retrieve an objectclient.remove(key): Remove an objectclient.clear(): Clear all objectsclient.size(): Get pool sizeclient.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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef808421a32dec3bd056d128f80fdc02727e51859d84a52cb0b44a9485913803
|
|
| MD5 |
eb75064f88bd25db7071fa1d4d90cd0d
|
|
| BLAKE2b-256 |
85039f56f0f97decf8d9a772d55569bb1719069a4eb349b4e3d59e5d325acf62
|
File details
Details for the file distributed_memory_pool-0.1.1-py3-none-any.whl.
File metadata
- Download URL: distributed_memory_pool-0.1.1-py3-none-any.whl
- Upload date:
- Size: 12.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48e511483298ba926f3a89e412413265df4c6ac0bbd5c647bc7051939dd07a0b
|
|
| MD5 |
59a8e8fb5ca572252aa9aade242ed6f2
|
|
| BLAKE2b-256 |
16021baba1dd1fcee01ae2742a2f93d87f9e05a78aa62041e9a7031c76fdd23f
|