Redis is NoSQL key-value in-memory distributed data store. It can be used as super-fast database, cache or message broker.
Please check out this very useful article about Redis Cluster Setup on Linux: Configuring and Running Redis Cluster on Linux
List<RepositoryFile> fileList = response.getRepositoryFileList(); RepositoryFile file1 = fileList.stream().filter(f -> f.getName().contains("my-file.txt")).findFirst().orElse(null);