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

removing circle and ensuring we redirect to active libraries #188

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
84 changes: 0 additions & 84 deletions .circleci/config.yml

This file was deleted.

15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[![license](https://img.shields.io/github/license/RedisLabs/JRediSearch.svg)](https://github.com/RediSearch/JRediSearch/blob/master/LICENSE)
[![CircleCI](https://circleci.com/gh/RediSearch/JRediSearch/tree/master.svg?style=svg)](https://circleci.com/gh/RediSearch/JRediSearch/tree/master)
[![GitHub issues](https://img.shields.io/github/release/RedisLabs/JRediSearch.svg)](https://github.com/RedisLabs/JRediSearch/releases/latest)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.redislabs/jredisearch/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.redislabs/jredisearch)
[![Javadocs](https://www.javadoc.io/badge/com.redislabs/jredisearch.svg)](https://www.javadoc.io/doc/com.redislabs/jredisearch)
Expand All @@ -17,11 +16,11 @@ A Java Client Library for [RediSearch](https://oss.redislabs.com/redisearch/)

As of [jedis 4.0.0](https://github.com/redis/jedis) this library is deprecated. It's features have been merged into jedis. Please either install it [from maven](https://mvnrepository.com/artifact/redis.clients/jedis) or [the repo](https://github.com/redis/jedis).

## Overview
## Overview

This project contains a Java library abstracting the API of the RediSearch Redis module, that implements a powerful
in-memory Secondary Index, Query Engine and Full-Text Search engine inside Redis.

This project contains a Java library abstracting the API of the RediSearch Redis module, that implements a powerful
in-memory Secondary Index, Query Engine and Full-Text Search engine inside Redis.

## Installing

JRediSearch is available using the maven central snapshot repository and via official
Expand Down Expand Up @@ -116,7 +115,7 @@ IndexDefinition def = new IndexDefinition()

client.createIndex(sc, Client.IndexOptions.defaultOptions().setDefinition(def));
```

Adding documents to the index:

```java
Expand Down Expand Up @@ -154,12 +153,12 @@ AggregationBuilder r = new AggregationBuilder("hello")
.groupBy("@state", Reducers.avg("@k").as("avgprice"))
.filter("@avgprice>=2")
.sortBy(10, SortedField.asc("@state"));

AggregationResult res = client.aggregate(r);
```

---

### Also supported:

* Geo filtering
Expand Down