pijplijn uitvoeren methode retourneert
Response<List<?>>
terwijl synchronisatie void returns retourneert , om echter een reactie uit de pijplijn te krijgen met behulp van synchronisatie, moet u individuele reacties vastleggen, zoiets als dit.
Response<Long> isDeleted = pipeline.del("test-1");
Response<Long> isSuccess = pipeline.hset("test-2", "a", "b");
Response<List<String>> hvals = pipeline.hvals("test-2");
pipeline.sync();
assertEquals(1, (long) isDeleted.get());