lmcache.experimental.distributed_server package#
Submodules#
lmcache.experimental.distributed_server.abstract_server module#
lmcache.experimental.distributed_server.naive_server module#
- class lmcache.experimental.distributed_server.naive_server.NaiveDistributedServer(storage_manager: StorageManager, lookup_server: LookupServerInterface, memory_allocator: MemoryAllocatorInterface, loop: AbstractEventLoop, config: LMCacheEngineConfig)[source]#
Bases:
DistributedServerInterface
- async handle_get(key: CacheEngineKey) MemoryObj | None [source]#
Handle get from the peer. This function is blocking for now but should be non-blocking.
- async issue_get(key: CacheEngineKey) MemoryObj | None [source]#
Perform get from the peer. This function can be blocking for now.
Module contents#
- class lmcache.experimental.distributed_server.DistributedServerInterface[source]#
-
- abstract async handle_get(key: CacheEngineKey) MemoryObj | None [source]#
Handle get from the peer.
- abstract async issue_get(key: CacheEngineKey) MemoryObj | None [source]#
Perform get from the peer.
- class lmcache.experimental.distributed_server.NaiveDistributedServer(storage_manager: StorageManager, lookup_server: LookupServerInterface, memory_allocator: MemoryAllocatorInterface, loop: AbstractEventLoop, config: LMCacheEngineConfig)[source]#
Bases:
DistributedServerInterface
- async handle_get(key: CacheEngineKey) MemoryObj | None [source]#
Handle get from the peer. This function is blocking for now but should be non-blocking.
- async issue_get(key: CacheEngineKey) MemoryObj | None [source]#
Perform get from the peer. This function can be blocking for now.