Skip to content

LokiVector v0.1.0 - Community Edition (MIT)

Latest

Choose a tag to compare

@MauricioPerera MauricioPerera released this 07 Dec 00:19
· 9 commits to main since this release

LokiVector Community Edition v0.1.0

First public release of LokiVector Community Edition.

🎉 Features

  • Document Store - Fast, in-memory document database
  • Vector Search - HNSW-based approximate nearest neighbor search
  • HTTP REST API - Full REST API for database operations
  • TCP Server - Low-latency TCP server for high-performance use cases
  • Crash-Tested Durability - Validated recovery from crashes
  • Comprehensive Tests - Full test suite with E2E crash recovery tests

📦 Installation

npm install @lokivector/core

🚀 Quick Start

const loki = require('@lokivector/core');

const db = new loki('example.db');
const users = db.addCollection('users');

users.insert({ name: 'John', age: 30 });
const results = users.find({ age: { $gte: 25 } });

📚 Documentation

📄 License

This release is MIT Licensed. Commercial features (replication, advanced cache, etc.) are available in Pro and Enterprise editions.

See LICENSE_FEATURES.md for details.

🔗 Links


Community Edition - MIT License