Bun 앱 사용자를 위한 SQLite 기반 Redis 호환 서버 설명.
Bun 앱에서 Redis 스타일 API와 pub/sub 기능을 필요로 하면서도 별도의 Redis 서버 운영을 원하지 않는 개발자를 위한 프로젝트입니다. 이 서버는 순정 Bun.RedisClient의 접속 URL을 사용하여 코드 수정 없이 사용할 수 있고, Redis 설치나 네이티브 의존성이 없습니다. 데이터를 SQLite 파일에 영속화하여 서버를 재시작해도 데이터가 유지됩니다.
Description of a SQLite-based Redis compatible server for Bun apps.
This project is designed for developers using Bun apps who need Redis-style API and pub/sub functionality without running a separate Redis server. It allows using the standard Bun.RedisClient connection URL, working without code modifications, and does not require Redis installation or native dependencies. Data is persisted in an SQLite file, ensuring data is retained even after server restart.