@workglow/sqlite
v0.3.1
Published
SQLite backends for @workglow/storage and @workglow/job-queue (includes sqlite-vector).
Readme
@workglow/sqlite
SQLite backends for @workglow/storage and @workglow/job-queue (includes sqlite-vector).
Features
- Sqlite implementation of
@workglow/storageinterfaces - Sqlite implementation of
@workglow/job-queueinterfaces - Persistent storage for tasks, vectors, and queues
Installation
npm install @workglow/sqlite
# or
bun add @workglow/sqlite
# or
yarn add @workglow/sqliteUsage
import { SqliteTabularStorage } from "@workglow/sqlite/storage";
import { SqliteQueueStorage } from "@workglow/sqlite/job-queue";
const storage = new SqliteTabularStorage(connectionConfig);
const queue = new SqliteQueueStorage(connectionConfig);License
Apache 2.0 - See LICENSE for details.
