All Projects → RediSearch → spring-redisearch

RediSearch / spring-redisearch

Licence: Apache-2.0 license
Provides support for RediSearch in Spring

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to spring-redisearch

retcl
Tcl client library for Redis
Stars: ✭ 20 (-35.48%)
Mutual labels:  redis-client
SmartRedis
SmartSim Infrastructure Library Clients.
Stars: ✭ 37 (+19.35%)
Mutual labels:  redis-client
simple redis
Simple and resilient redis client for rust.
Stars: ✭ 21 (-32.26%)
Mutual labels:  redis-client
vscode-redis
Redis Client in VSCode!
Stars: ✭ 63 (+103.23%)
Mutual labels:  redis-client
cache redis node
Exemplo de utilização de Cache, com Redis, Mongo, nodejs
Stars: ✭ 30 (-3.23%)
Mutual labels:  redis-client
CloudStructures
Redis Client based on StackExchange.Redis.
Stars: ✭ 124 (+300%)
Mutual labels:  redis-client
zig-okredis
Zero-allocation Client for Redis 6+
Stars: ✭ 137 (+341.94%)
Mutual labels:  redis-client
cpp redis
C++11 Lightweight Redis client: async, thread-safe, no dependency, pipelining, multi-platform
Stars: ✭ 506 (+1532.26%)
Mutual labels:  redis-client
redis
efficient client ⚡️
Stars: ✭ 70 (+125.81%)
Mutual labels:  redis-client
ftsb
Full Text Search Benchmark, a tool for comparing and evaluating full-text search engines.
Stars: ✭ 12 (-61.29%)
Mutual labels:  redisearch
redis-cpp
redis-cpp is a header-only library in C++17 for Redis (and C++11 backport)
Stars: ✭ 73 (+135.48%)
Mutual labels:  redis-client
JRediSearch
Java Client for RediSearch
Stars: ✭ 133 (+329.03%)
Mutual labels:  redis-client
aioredis-cluster
Redis Cluster support extension for aioredis
Stars: ✭ 21 (-32.26%)
Mutual labels:  redis-client
redimo.go
Use the power of DynamoDB with the ease of the Redis API
Stars: ✭ 29 (-6.45%)
Mutual labels:  redis-client
jimhttp
A library collection and web microframework
Stars: ✭ 25 (-19.35%)
Mutual labels:  redis-client
redis client
a redis client supports cluster
Stars: ✭ 72 (+132.26%)
Mutual labels:  redis-client
node-redis-connection-pool
A node.js connection manager for Redis
Stars: ✭ 52 (+67.74%)
Mutual labels:  redis-client
redis-developer.github.io
The Home of Redis Developers
Stars: ✭ 28 (-9.68%)
Mutual labels:  redis-client
rueidis
A Fast Golang Redis RESP3 client that supports Client Side Caching, Auto Pipelining, Generics OM, RedisJSON, RedisBloom, RediSearch, RedisAI, RedisGears, etc.
Stars: ✭ 422 (+1261.29%)
Mutual labels:  redis-client
java-redis-client
OpenTracing Instrumentation for Redis Client
Stars: ✭ 31 (+0%)
Mutual labels:  redis-client

Spring RediSearch

License Latest Forums Discord

⚠️
Spring RediSearch has been merged into multi-module client LettuceMod. Updates will now happen in LettuceMod.

Spring RediSearch provides access to RediSearch from Spring applications

Usage

Add Spring RediSearch to your application dependencies, e.g. with Maven:

<dependency>
    <groupId>com.redislabs</groupId>
    <artifactId>spring-redisearch</artifactId>
    <version>x.y.z</version>
</dependency>

Inject and use RediSearchClient or StatefulRediSearchConnection:

public class Example {

    @Autowired
    StatefulRediSearchConnection<String, String> connection;

    public void testSearch() {
        connection.sync().search("music", "Lalo Schifrin");
    }

}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].