Search…
v0.21-branch
Introduction
Community
Roadmap
Changelog
Getting started
Quickstart
Concepts
Architecture
Learning by example
Third party integrations
FAQ
Tutorials
Overview
Driver ranking
Fraud detection on GCP
Real-time credit scoring on AWS
Driver stats on Snowflake
Validating historical features with Great Expectations
How-to Guides
Running Feast with Snowflake/GCP/AWS
Running Feast in production
Deploying a Java feature server on Kubernetes
Upgrading from Feast 0.9
Adding a custom provider
Adding a new online store
Adding a new offline store
Adding or reusing tests
Reference
Data sources
Offline stores
Online stores
SQLite
Redis
Datastore
DynamoDB
PostgreSQL (contrib)
Providers
Feature repository
Feature servers
[Alpha] Web UI
[Alpha] Data quality monitoring
[Alpha] On demand feature view
[Alpha] AWS Lambda feature server
Feast CLI reference
Python API reference
Usage
Project
Contribution process
Development guide
Versioning policy
Release process
Feast 0.9 vs Feast 0.10+
Powered By
GitBook
Redis
Description
The
Redis
online store provides support for materializing feature values into Redis.
Both Redis and Redis Cluster are supported
The data model used to store feature values in Redis is described in more detail
here
.
Examples
Connecting to a single Redis instance
feature_store.yaml
1
project
:
my_feature_repo
2
registry
:
data/registry.db
3
provider
:
local
4
online_store
:
5
type
:
redis
6
connection_string
:
"localhost:6379"
Copied!
Connecting to a Redis Cluster with SSL enabled and password authentication
feature_store.yaml
1
project
:
my_feature_repo
2
registry
:
data/registry.db
3
provider
:
local
4
online_store
:
5
type
:
redis
6
redis_type
:
redis_cluster
7
connection_string
:
"redis1:6379,redis2:6379,ssl=true,password=my_password"
Copied!
Configuration options are available
here
.
Previous
SQLite
Next
Datastore
Last modified
7d ago
Export as PDF
Copy link
Edit on GitHub
Contents
Description
Examples