FluxIndex.Storage.PostgreSQL 0.5.0

dotnet add package FluxIndex.Storage.PostgreSQL --version 0.5.0
                    
NuGet\Install-Package FluxIndex.Storage.PostgreSQL -Version 0.5.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FluxIndex.Storage.PostgreSQL" Version="0.5.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FluxIndex.Storage.PostgreSQL" Version="0.5.0" />
                    
Directory.Packages.props
<PackageReference Include="FluxIndex.Storage.PostgreSQL" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add FluxIndex.Storage.PostgreSQL --version 0.5.0
                    
#r "nuget: FluxIndex.Storage.PostgreSQL, 0.5.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package FluxIndex.Storage.PostgreSQL@0.5.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=FluxIndex.Storage.PostgreSQL&version=0.5.0
                    
Install as a Cake Addin
#tool nuget:?package=FluxIndex.Storage.PostgreSQL&version=0.5.0
                    
Install as a Cake Tool

FluxIndex

CI/CD NuGet License

RAG library for .NET 10.0 - Build semantic search and retrieval systems with vector + keyword hybrid search.

Key Features

  • Hybrid Search - Vector (semantic) + Keyword (BM25) with automatic strategy selection
  • High Performance - Embedding cache (100% faster), batch indexing (24ms/1K chunks)
  • Local Reranking - Cross-encoder neural reranking with automatic algorithmic fallback
  • Graph Traversal - BFS/DFS, Dijkstra shortest path, PageRank-style importance
  • Vector Quantization - Scalar (Int8/Int4), Product Quantization, Binary (32x compression)
  • Multiple Storage - SQLite, PostgreSQL with pgvector
  • Local-First AI - Built-in LocalAI (ONNX-based), bring your own embedding service
  • Document Processing - PDF/DOCX/TXT via FileFlux, web crawling via WebFlux
  • MCP Server - Model Context Protocol for AI assistant integration
  • Production Ready - Redis caching, clean architecture, .NET 10.0

Quick Start

dotnet add package FluxIndex.SDK
dotnet add package FluxIndex.Storage.SQLite
using FluxIndex.SDK;

// 1. Setup (LocalAI embedding - no API key required)
var context = FluxIndexContext.CreateBuilder()
    .UseSQLite("fluxindex.db")
    .UseLocalAIEmbedding()  // Built-in ONNX-based embedding
    .UseResilientLocalReranker()  // Auto fallback to algorithmic
    .Build();

// 2. Index
await context.Indexer.IndexDocumentAsync(
    "FluxIndex is a RAG library for .NET", "doc-001");

// 3. Search
var results = await context.Retriever.SearchAsync("RAG library", maxResults: 5);

Using Custom Embedding Service

FluxIndex is AI provider-agnostic. Implement IEmbeddingService for your preferred provider:

// Example: Custom OpenAI embedding service
public class MyOpenAIEmbeddingService : IEmbeddingService
{
    public async Task<float[]> GetEmbeddingAsync(string text, CancellationToken ct = default)
    {
        // Your OpenAI API call here
    }
}

// Register your implementation
services.AddSingleton<IEmbeddingService, MyOpenAIEmbeddingService>();

var context = FluxIndexContext.CreateBuilder()
    .UseSQLite("fluxindex.db")
    .UseEmbeddingService<MyOpenAIEmbeddingService>()
    .Build();

MCP Server

FluxIndex provides Model Context Protocol (MCP) server for AI assistant integration.

Available Tools: search, memorize, unmemorize, status

See FluxIndex.MCP for integration details.

Performance

Operation Performance Notes
Batch Indexing 24ms/1K chunks 8-thread parallelism
Vector Search 0.6ms/query In-memory embeddings
Embedding Cache 100% faster Eliminates API calls
Semantic Cache <5ms Redis, 95% similarity

Full benchmarks: BENCHMARK_RESULTS.md

Package Structure

Package Description
FluxIndex.Core Interfaces and core logic
FluxIndex.SDK All-in-one SDK with LocalAI, FileFlux, WebFlux, FluxCurator, FluxImprover
FluxIndex.Storage.SQLite SQLite vector store
FluxIndex.Storage.PostgreSQL PostgreSQL with pgvector
FluxIndex.Cache.Redis Redis semantic cache

Documentation

Examples

Requirements

  • .NET 10.0 or later
  • SQLite or PostgreSQL

License

MIT License - see LICENSE file.

Contributing

Contributions are welcome! Please feel free to submit issues and pull requests.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.5.0 0 12/16/2025
0.4.1 0 12/16/2025
0.4.0 25 12/15/2025
0.3.3 27 12/15/2025
0.3.2 28 12/15/2025
0.2.14 190 11/2/2025
0.2.12 200 10/27/2025
0.2.11 182 10/27/2025
0.2.10 170 10/21/2025
0.2.9 157 10/12/2025
0.2.8 172 10/2/2025
0.2.7 169 9/29/2025
0.2.5 151 9/26/2025
0.2.4 172 9/25/2025
0.2.3 177 9/23/2025
0.2.2 183 9/22/2025
0.1.4 256 9/15/2025
0.1.3 244 9/15/2025
0.1.2 248 9/15/2025