The first index structure that fuses time-series ordering with semantic similarity into a single queryable graph. It serves the one unified representation that every domain collapses into — so the same index answers questions across genomics, finance, and robotics alike. Neither a time index nor a vector index — both.
Traditional vector indexes treat all data as a flat collection. VectorScaleDB's proprietary temporal-semantic index serves the one unified representation that every ingested domain — genomics, finance, robotics, sensors — collapses into, partitioning it by time so time-bounded search never has to scan irrelevant history.
The proprietary innovation that makes VectorScaleDB more than a partitioned vector store. Behavioral continuity links track entity trajectories across time boundaries, enabling queries that span arbitrary time ranges seamlessly.
Time-bounded nearest neighbor search that returns results faster than a single network round-trip.
/v1/metricsFull index durability with point-in-time recovery. Never rebuild an index from scratch again.
Research-driven enhancements that accelerate search and reduce memory footprint without sacrificing recall.
The query planner understands both temporal predicates and vector similarity natively, optimizing across both dimensions simultaneously rather than treating them as separate filter steps.
# Python: Temporal KNN query with the VectorScaleDB SDK import vectorscaledb client = vectorscaledb.Client("https://api.vectorscaledb.com") # Find the 10 most similar entities within the last 24 hours results = client.query.temporal_knn( embedding=[0.12, -0.34, 0.56, 0.78, -0.91, 0.23], k=10, time_range={ "start": "2026-03-08T00:00:00Z", "end": "2026-03-09T00:00:00Z" }, entity_type="TRACKED_OBJECT", accuracy=200 # Higher recall for this query ) for result in results: print(f"Entity: {result.entity_id}") print(f" Similarity: {result.similarity:.4f}") print(f" Timestamp: {result.timestamp}") print(f" Chunk: {result.chunk_id}") print(f" Latency: {result.latency_ms}ms") # Example output: # Entity: vehicle-0042 # Similarity: 0.9714 # Timestamp: 2026-03-08T14:22:01Z # Chunk: chunk-2026-03-08-14 # Latency: 0.82ms
Explore the full API reference for temporal-semantic indexing and querying.
/v1/query/temporal-knn
/v1/query/trajectory-similarity
Schedule a technical demo and run temporal KNN queries against your own data.