Spring RediSearch

Spring-enabled client for RediSearch based on LettuSearch

License

License

Categories

Categories

Redis Data Databases Search Business Logic Libraries
GroupId

GroupId

com.pig4cloud.redis
ArtifactId

ArtifactId

redis-search-boot-starter-parent
Last Version

Last Version

0.0.1
Release Date

Release Date

Type

Type

jar
Description

Description

Spring RediSearch
Spring-enabled client for RediSearch based on LettuSearch
Project URL

Project URL

https://projects.spring.io/spring-boot/#/spring-boot-starter-parent/redis-search-boot-starter-parent
Source Code Management

Source Code Management

https://github.com/Redisearch/spring-redisearch.git

Download redis-search-boot-starter-parent

How to add to project

<!-- https://jarcasting.com/artifacts/com.pig4cloud.redis/redis-search-boot-starter-parent/ -->
<dependency>
    <groupId>com.pig4cloud.redis</groupId>
    <artifactId>redis-search-boot-starter-parent</artifactId>
    <version>0.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.pig4cloud.redis/redis-search-boot-starter-parent/
implementation 'com.pig4cloud.redis:redis-search-boot-starter-parent:0.0.1'
// https://jarcasting.com/artifacts/com.pig4cloud.redis/redis-search-boot-starter-parent/
implementation ("com.pig4cloud.redis:redis-search-boot-starter-parent:0.0.1")
'com.pig4cloud.redis:redis-search-boot-starter-parent:jar:0.0.1'
<dependency org="com.pig4cloud.redis" name="redis-search-boot-starter-parent" rev="0.0.1">
  <artifact name="redis-search-boot-starter-parent" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.pig4cloud.redis', module='redis-search-boot-starter-parent', version='0.0.1')
)
libraryDependencies += "com.pig4cloud.redis" % "redis-search-boot-starter-parent" % "0.0.1"
[com.pig4cloud.redis/redis-search-boot-starter-parent "0.0.1"]

Dependencies

compile (5)

Group / Artifact Type Version
org.springframework.boot : spring-boot-starter jar 2.2.6.RELEASE
org.projectlombok : lombok Optional jar 1.18.12
org.apache.commons : commons-pool2 jar 2.7.0
com.redislabs : lettusearch jar 1.12.1
org.springframework.boot : spring-boot-configuration-processor Optional jar 2.2.6.RELEASE

Project Modules

There are no modules declared in this project.

license Maven Central Javadocs Build GitHub issues

Spring RediSearch

Forum Discord

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>2.5.0</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");
	}

}
com.pig4cloud.redis
A query and indexing engine for Redis, providing secondary indexing, full-text search, and aggregations.

Versions

Version
0.0.1