Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Redis url and add hybrid search support #531

Merged
merged 2 commits into from
Nov 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/building_blocks/data_sources/data_velocity.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ The choice of data processing velocity is pivotal in determining the kind of dat
|**Example Data**| Social media feeds, stock market transactions, sensor readings, clickstream data, ad requests and responses. A credit card company aiming to detect fraudulent transactions in real-time benefits from streaming data. Real-time detection can prevent financial losses and protect customers from fraudulent activities.|
|**Properties**| Stream processing handles data in real-time, making it highly dynamic. It's designed to support immediate updates and changes, making it ideal for use cases that require up-to-the-second insights.|
|**Formats**| Data in stream processing is often in Protobuf, Avro, or other formats optimized for small footprint and fast serialization.|
|**Databases**| Real-time databases include [Clickhouse](https://clickhouse.com/), [Redis](https://redis.com/), and [RethinkDB](https://rethinkdb.com/). There are also in-memory databases, such as [DuckDB](https://duckdb.org/) and [KuzuDB](https://kuzudb.com/), which can be used to create real-time dashboards. However, depending on the deployment strategy chosen, these databases may lose the data once the application is terminated.|
|**Databases**| Real-time databases include [Clickhouse](https://clickhouse.com/), [Redis](https://redis.io/), and [RethinkDB](https://rethinkdb.com/). There are also in-memory databases, such as [DuckDB](https://duckdb.org/) and [KuzuDB](https://kuzudb.com/), which can be used to create real-time dashboards. However, depending on the deployment strategy chosen, these databases may lose the data once the application is terminated.|

Most systems deployed in production at scale combine stream and batch processing. This enables you to leverage the immediacy of real-time updates and the depth of historical data. But reconciling stream and batch processes in a single system introduces trade-off decisions – trade-off decisions you must make to keep your data consistent across systems and across time.

Expand Down
8 changes: 4 additions & 4 deletions docs/tools/vdb_table/data/redis.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"links": {
"docs": "https://redis.io/docs/get-started/vector-database/",
"github": "https://github.com/RediSearch/RediSearch",
"website": "https://redis.com/solutions/use-cases/vector-database/",
"website": "https://redis.io/solutions/vector-database/",
"vendor_discussion": "https://github.com/superlinked/VectorHub/discussions/81",
"poc_github": "https://github.com/adrianoamaral",
"slug": "redis"
Expand Down Expand Up @@ -32,9 +32,9 @@
"comment": ""
},
"hybrid_search": {
"support": "",
"source_url": "",
"comment": ""
"support": "full",
"source_url": "https://github.com/redis-developer/redis-ai-resources/blob/main/python-recipes/vector-search/02_hybrid_search.ipynb",
"comment": "Supported using the aggregation api."
},
"facets": {
"support": "full",
Expand Down