Source code for lmcache.experimental.storage_backend.connector.base_connector
import abc
from typing import List, Optional
from lmcache.experimental.memory_management import MemoryObj
from lmcache.logging import init_logger
from lmcache.utils import CacheEngineKey
logger = init_logger(__name__)
[docs]
class RemoteConnector(metaclass=abc.ABCMeta):
"""
Interface for remote connector
"""
[docs]
@abc.abstractmethod
async def exists(self, key: CacheEngineKey) -> bool:
"""
Check if the remote server contains the key
Input:
key: a string
Returns:
True if the cache engine contains the key, False otherwise
"""
raise NotImplementedError
[docs]
@abc.abstractmethod
async def get(self, key: CacheEngineKey) -> Optional[MemoryObj]:
"""
Get the memory_obj of the corresponding key
Input:
key: the key of the corresponding object
Returns:
The memory_obj of the corresponding key
Return None if the key does not exist
"""
raise NotImplementedError
[docs]
@abc.abstractmethod
async def put(self, key: CacheEngineKey, memory_obj: MemoryObj):
"""
Send the memory_obj with the corresponding key directly
to the remote server. Will decrease the ref count after
send finishes.
Input:
key: the CacheEngine key
memory_obj: the memory_obj of the corresponding key
"""
raise NotImplementedError
[docs]
@abc.abstractmethod
async def list(self) -> List[str]:
"""
List all keys in the remote server
Returns:
A list of keys in the remote server
"""
raise NotImplementedError
[docs]
@abc.abstractmethod
async def close(self):
"""
Close remote server
"""
raise NotImplementedError