10.样例应用程序

应用程序开发

现在是时候看看如何在应用程序中使用reresearch了。

运行示例应用程序

该应用程序和所有服务(包括reresearchch)都可以作为Docker Compose应用程序使用。

如果你还没有下载项目,克隆它:

> git clone https://github.com/RediSearch/redisearch-getting-started.git
> cd redisearch-getting-started

运行应用程序:

> cd样本应用
> docker-compose up——force- rebuild——build

Docker Compose将启动:

  1. 在端口6380上创建reresearch实例,并导入所有电影、演员并创建索引
  2. 端口8085、8086、8087上可用的Java、Node和Python REST服务
  3. 前端端口8084

一旦启动,您可以使用以下url访问应用程序及其服务:

  • http://localhost:8084
  • http://localhost:8085/api/1.0/movies/search?q=star&offset=0&limit=10
  • http://localhost:8086/api/1.0/movies/search?q=star&offset=0&limit=10
  • http://localhost:8087/api/1.0/movies/search?q=star&offset=0&limit=10

停止并删除一切

执行如下命令删除container & images:

> docker-compose down -v——rmi local——remove-orphans
Baidu