diff --git a/README.md b/README.md index d530f7c..c301714 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [](LICENSE) [](tests/) -Write `INSERT`, `SEARCH`, `RECOMMEND`, `DELETE`, and `CREATE COLLECTION` statements instead of Python SDK calls. Supports hybrid dense+sparse vector search, cross-encoder reranking, quantization (scalar, turbo, binary, product), SQL-style `WHERE` filters, script execution, and collection dump/restore. +Write `INSERT`, `SEARCH`, `SCROLL`, `RECOMMEND`, `DELETE`, and `CREATE COLLECTION` statements instead of Python SDK calls. Supports hybrid dense+sparse vector search, cross-encoder reranking, quantization (scalar, turbo, binary, product), SQL-style `WHERE` filters, script execution, and collection dump/restore. ``` qql> INSERT INTO COLLECTION notes VALUES {'text': 'Qdrant is a vector database', 'author': 'alice', 'year': 2024} @@ -82,7 +82,7 @@ Full documentation lives in the [`docs/`](docs/) folder and at **[pavanjava.gith |---|---| | [Getting Started](docs/getting-started.md) | Installation, connecting, first queries | | [INSERT / INSERT BULK](docs/insert.md) | Adding documents, batch inserts, payload types | -| [SEARCH / RECOMMEND / Hybrid / RERANK](docs/search.md) | Semantic search, hybrid, reranking, recommendations | +| [SEARCH / SCROLL / RECOMMEND / Hybrid / RERANK](docs/search.md) | Semantic search, pagination, hybrid, reranking, recommendations | | [WHERE Filters](docs/filters.md) | Full SQL-style filter operators | | [Collections & Quantization](docs/collections.md) | CREATE, DROP, QUANTIZE (scalar/turbo/binary/product), CREATE INDEX | | [Scripts: EXECUTE / DUMP](docs/scripts.md) | Script files, collection backup/restore | @@ -104,6 +104,11 @@ SEARCH articles SIMILAR TO 'query' LIMIT 10 WHERE year >= 2020 SEARCH articles SIMILAR TO 'query' LIMIT 10 USING HYBRID SEARCH articles SIMILAR TO 'query' LIMIT 10 USING HYBRID RERANK +-- Scroll +SCROLL FROM articles LIMIT 50 +SCROLL FROM articles WHERE year >= 2024 LIMIT 50 +SCROLL FROM articles AFTER 'cursor-id' LIMIT 50 + -- Recommend RECOMMEND FROM articles POSITIVE IDS (1001, 1002) LIMIT 5 diff --git a/docs/getting-started.md b/docs/getting-started.md index f44c1fd..96873d4 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -138,6 +138,9 @@ SEARCH notes SIMILAR TO 'vector storage engines' LIMIT 3 -- Filter results SEARCH notes SIMILAR TO 'vector databases' LIMIT 5 WHERE year >= 2023 +-- Browse with pagination +SCROLL FROM notes LIMIT 10 + -- List all collections SHOW COLLECTIONS ``` @@ -147,7 +150,7 @@ SHOW COLLECTIONS ## Next Steps - [INSERT / INSERT BULK](insert.md) — adding documents -- [SEARCH / RECOMMEND / Hybrid / RERANK](search.md) — querying +- [SEARCH / SCROLL / RECOMMEND / Hybrid / RERANK](search.md) — querying - [WHERE Filters](filters.md) — payload filtering - [Collections & Quantization](collections.md) — managing collections - [Scripts: EXECUTE / DUMP](scripts.md) — automating with script files diff --git a/docs/index.html b/docs/index.html index 78cf475..2ce6429 100644 --- a/docs/index.html +++ b/docs/index.html @@ -148,8 +148,8 @@
Adding documents, batch inserts, payload types
-Semantic search, hybrid search, reranking, recommendations
+Semantic search, pagination, hybrid search, reranking, recommendations