Metadata-Version: 2.4
Name: lmc_external_log_backend
Version: 0.1.2
Summary: External logging backend implementation for LMCache
Home-page: https://github.com/opendataio/lmc_external_log_backend
Author: baoloongmao
Author-email: maobaolong@139.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# LMCache External Log Backend

This project provides an external logging backend implementation for LMCache.

## Features
- Implements the `StorageBackendInterface` from LMCache
- Logs all backend operations (put, get, prefetch, pin, etc.)
- Easy to integrate with existing LMCache systems

## Installation

```bash
pip install lmc_external_log_backend
```

## Usage

To use this backend in your LMCache,

Add the following to your LMCache Configuration:
```yaml
chunk_size: 64
local_cpu: False
max_local_cpu_size: 5
external_backends: "log_external_backend"
extra_config:
  external_backend.log_external_backend.module_path: lmc_external_log_backend.lmc_external_log_backend
  external_backend.log_external_backend.class_name: ExternalLogBackend

```


## Development

To build the package:
```bash
python setup.py sdist bdist_wheel
```

To install locally:
```bash
pip install -e .
```

## License
Apache-2.0 License
