FluxIndex.Core
0.3.2
See the version list below for details.
dotnet add package FluxIndex.Core --version 0.3.2
NuGet\Install-Package FluxIndex.Core -Version 0.3.2
<PackageReference Include="FluxIndex.Core" Version="0.3.2" />
<PackageVersion Include="FluxIndex.Core" Version="0.3.2" />
<PackageReference Include="FluxIndex.Core" />
paket add FluxIndex.Core --version 0.3.2
#r "nuget: FluxIndex.Core, 0.3.2"
#:package FluxIndex.Core@0.3.2
#addin nuget:?package=FluxIndex.Core&version=0.3.2
#tool nuget:?package=FluxIndex.Core&version=0.3.2
FluxIndex
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
- AI Flexibility - OpenAI, Azure OpenAI, or custom embedding services
- 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
dotnet add package FluxIndex.AI.LocalReranker # Optional: neural reranking
using FluxIndex.SDK;
// 1. Setup
var context = FluxIndexContext.CreateBuilder()
.UseSQLite("fluxindex.db")
.UseOpenAI("your-api-key", "text-embedding-3-small")
.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);
👉 See Tutorial for complete examples and best practices
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
Documentation
- Getting Started - Setup and configuration
- Tutorial - Comprehensive examples
- Architecture - Design principles and patterns
- Cheat Sheet - Quick reference
- Testing Guide - Unit and integration testing
- LocalReranker Guide - Neural reranking integration
- Vector Quantization Guide - Memory optimization with quantization
Examples
- RealQualityTest - OpenAI + SQLite integration
- FileFluxIndexSample - PDF/DOCX processing
- WebFluxSample - Web crawling
- IntegrationTestSample - Integration testing patterns
Requirements
- .NET 10.0 or later
- SQLite or PostgreSQL
- OpenAI API key (optional)
License
MIT License - see LICENSE file.
Contributing
Contributions are welcome! Please feel free to submit issues and pull requests.
| Product | Versions 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. |
-
net10.0
- FileFlux (>= 0.8.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.1)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.1)
NuGet packages (7)
Showing the top 5 NuGet packages that depend on FluxIndex.Core:
| Package | Downloads |
|---|---|
|
FluxIndex.SDK
FluxIndex SDK - Complete RAG infrastructure with FileFlux integration, FluxCurator preprocessing, and FluxImprover quality enhancement. AI providers are externally injectable. |
|
|
FluxIndex.Storage.PostgreSQL
PostgreSQL with pgvector storage provider for FluxIndex |
|
|
FluxIndex.Cache.Redis
Package Description |
|
|
FluxIndex.Storage.SQLite
SQLite storage provider for FluxIndex |
|
|
FluxIndex.Storage.Neo4j
Neo4j graph store implementation for FluxIndex GraphRAG |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.5.8 | 64 | 1/22/2026 |
| 0.5.7 | 78 | 1/20/2026 |
| 0.5.6 | 137 | 1/19/2026 |
| 0.5.5 | 136 | 1/19/2026 |
| 0.5.4 | 140 | 1/7/2026 |
| 0.5.3 | 141 | 12/28/2025 |
| 0.5.1 | 325 | 12/17/2025 |
| 0.5.0 | 307 | 12/16/2025 |
| 0.4.1 | 299 | 12/16/2025 |
| 0.4.0 | 279 | 12/15/2025 |
| 0.3.3 | 270 | 12/15/2025 |
| 0.3.2 | 264 | 12/15/2025 |
| 0.2.14 | 302 | 11/2/2025 |
| 0.2.12 | 277 | 10/27/2025 |
| 0.2.11 | 269 | 10/27/2025 |
| 0.2.10 | 253 | 10/21/2025 |
| 0.2.9 | 246 | 10/12/2025 |
| 0.2.8 | 306 | 10/2/2025 |
| 0.2.7 | 261 | 9/29/2025 |
| 0.2.5 | 244 | 9/26/2025 |
| 0.2.4 | 291 | 9/25/2025 |
| 0.2.3 | 277 | 9/23/2025 |
| 0.2.2 | 343 | 9/22/2025 |