Skip to content
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
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -574,36 +574,36 @@ These can be found in the `/demos` folder:

- **roms-documents**:
- Simple API example of `@Document` mapping, Spring Repositories and Querying.
- Run with `./mvnw install -Dmaven.test.skip && ./mvnw spring-boot:run -pl demos/roms-documents`
- Run with `./gradlew :demos:roms-documents:bootRun`

- **roms-hashes**:
- Simple API example of `@RedisHash`, enhanced secondary indices and querying.
- Run with `./mvnw install -Dmaven.test.skip && ./mvnw spring-boot:run -pl demos/roms-hashes`
- Run with `./gradlew :demos:roms-hashes:bootRun`

- **roms-permits**:
- Port of [Elena Kolevska's](https://github.com/elena-kolevska) Quick Start: Using RediSearch with
JSON [Demo][redisearch-json] to Redis OM Spring.
- Run with `./mvnw install -Dmaven.test.skip && ./mvnw spring-boot:run -pl demos/roms-permits`
- Run with `./gradlew :demos:roms-permits:bootRun`

- **roms-vss**:
- Port of [Redis Vector Search Demo](https://github.com/redis-developer/redis-product-search) for fashion product recommendations using vector similarity search.
- Run with `./mvnw install -Dmaven.test.skip && ./mvnw spring-boot:run -pl demos/roms-vss`
- Run with `./gradlew :demos:roms-vss:bootRun`

- **roms-vss-movies**:
- Movie recommendation system showcasing Redis 8's vector similarity search capabilities.
- Run with `./mvnw install -Dmaven.test.skip && ./mvnw spring-boot:run -pl demos/roms-vss-movies`
- Run with `./gradlew :demos:roms-vss-movies:bootRun`

- **roms-modeling**:
- Simple API example of modeling, Spring Repositories and Querying.
- Run with `./mvnw install -Dmaven.test.skip && ./mvnw spring-boot:run -pl demos/roms-modeling`
- Run with `./gradlew :demos:roms-modeling:bootRun`

- **roms-vectorizers**:
- Simple API example of vectorizing, Spring Repositories and Querying.
- Run with `./mvnw install -Dmaven.test.skip && ./mvnw spring-boot:run -pl demos/roms-vectorizers`
- Run with `./gradlew :demos:roms-vectorizer:bootRun`

- **roms-amr-entraid**:
- Demo showing how to connect to Azure Managed Redis (AMR) using Microsoft Entra ID authentication.
- Run with `./mvnw install -Dmaven.test.skip && ./mvnw spring-boot:run -pl demos/roms-amr-entraid`
- Run with `./gradlew :demos:roms-amr-entraid:bootRun`

### External Demos

Expand Down
117 changes: 0 additions & 117 deletions demos/roms-amr-entraid/.mvn/wrapper/MavenWrapperDownloader.java

This file was deleted.

Binary file not shown.
2 changes: 0 additions & 2 deletions demos/roms-amr-entraid/.mvn/wrapper/maven-wrapper.properties

This file was deleted.

117 changes: 0 additions & 117 deletions demos/roms-documents/.mvn/wrapper/MavenWrapperDownloader.java

This file was deleted.

Binary file removed demos/roms-documents/.mvn/wrapper/maven-wrapper.jar
Binary file not shown.
2 changes: 0 additions & 2 deletions demos/roms-documents/.mvn/wrapper/maven-wrapper.properties

This file was deleted.

4 changes: 2 additions & 2 deletions demos/roms-documents/README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ http://localhost:8080/swagger-ui/index.html
To run this demo:

```bash
./mvnw install -Dmaven.test.skip && ./mvnw spring-boot:run -pl demos/roms-documents
./gradlew :demos:roms-documents:bootRun
```

## Testing

The demo includes tests demonstrating how to use Redis OM Spring in a test environment.
The demo includes tests demonstrating how to use Redis OM Spring in a test environment.
Loading