Java Code Examples for org.infinispan.query.dsl.QueryFactory#create()
The following examples show how to use
org.infinispan.query.dsl.QueryFactory#create() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TestServlet.java From quarkus with Apache License 2.0 | 6 votes |
@Path("icklequery/{id}") @GET @Produces(MediaType.TEXT_PLAIN) public String ickleQueryAuthorSurname(@PathParam("id") String name) { ensureStart(); QueryFactory queryFactory = Search.getQueryFactory(cache); Query query = queryFactory.create("from book_sample.Book b where b.authors.name like '%" + name + "%'"); List<Book> list = query.list(); if (list.isEmpty()) { return "No one found for " + name; } return list.stream() .map(Book::getAuthors) .flatMap(Set::stream) .map(author -> author.getName() + " " + author.getSurname()) .sorted() .collect(Collectors.joining(",", "[", "]")); }
Example 2
Source File: TestServlet.java From quarkus with Apache License 2.0 | 5 votes |
@Path("magazinequery/{id}") @GET public String magazineQuery(@PathParam("id") String name) { ensureStart(); QueryFactory queryFactory = Search.getQueryFactory(magazineCache); Query query = queryFactory.create("from magazine_sample.Magazine m where m.name like '%" + name + "%'"); List<Magazine> list = query.list(); if (list.isEmpty()) { return "No one found for " + name; } return list.stream() .map(m -> m.getName() + ":" + m.getPublicationYearMonth()) .collect(Collectors.joining(",", "[", "]")); }
Example 3
Source File: InfinispanRemoteQuery.java From infinispan-simple-tutorials with Apache License 2.0 | 4 votes |
public static void main(String[] args) throws Exception { // Create a configuration for a locally-running server ConfigurationBuilder builder = new ConfigurationBuilder(); builder.addServer() .host("127.0.0.1") .port(ConfigurationProperties.DEFAULT_HOTROD_PORT) .security().authentication() //Add user credentials. .username("username") .password("password") .realm("default") .saslMechanism("DIGEST-MD5"); // Connect to the server RemoteCacheManager client = new RemoteCacheManager(builder.build()); // Get the people cache, create it if needed with the default configuration RemoteCache<String, Person> peopleCache = client.administration() .withFlags(CacheContainerAdmin.AdminFlag.VOLATILE) .getOrCreateCache("people-remote-query", DefaultTemplate.DIST_SYNC); // Create the persons dataset to be stored in the cache Map<String, Person> people = new HashMap<>(); people.put("1", new Person("Oihana", "Rossignol", 2016, "Paris")); people.put("2", new Person("Elaia", "Rossignol", 2018, "Paris")); people.put("3", new Person("Yago", "Steiner", 2013, "Saint-Mandé")); people.put("4", new Person("Alberto", "Steiner", 2016, "Paris")); // Create and add the Protobuf schema for Person class. Note Person is an annotated POJO addPersonSchema(client); // Put all the values in the cache peopleCache.putAll(people); // Get a query factory from the cache QueryFactory queryFactory = Search.getQueryFactory(peopleCache); // Create a query with lastName parameter Query query = queryFactory.create("FROM tutorial.Person p where p.lastName = :lastName"); // Set the parameter value query.setParameter("lastName", "Rossignol"); // Execute the query List<Person> rossignols = query.list(); // Print the results System.out.println(rossignols); // Stop the client and release all resources client.stop(); }
Example 4
Source File: InfinispanRemoteContinuousQuery.java From infinispan-simple-tutorials with Apache License 2.0 | 4 votes |
public static void main(String[] args) throws Exception { // Create a configuration for a locally-running server ConfigurationBuilder builder = new ConfigurationBuilder(); builder.addServer() .host("127.0.0.1") .port(ConfigurationProperties.DEFAULT_HOTROD_PORT) .security().authentication() //Add user credentials. .username("username") .password("password") .realm("default") .saslMechanism("DIGEST-MD5"); // Connect to the server RemoteCacheManager client = new RemoteCacheManager(builder.build()); // Get the cache, create it if needed with an existing template name RemoteCache<String, InstaPost> instaPostsCache = client.administration().withFlags(CacheContainerAdmin.AdminFlag.VOLATILE).getOrCreateCache(CACHE_NAME, DefaultTemplate.DIST_SYNC); // Create and add the Protobuf schema for InstaPost class. Note InstaPost is an annotated POJO addInstapostsSchema(client); // Get a query factory from the cache QueryFactory queryFactory = Search.getQueryFactory(instaPostsCache); // Create a query with lastName parameter Query query = queryFactory.create("FROM tutorial.InstaPost p where p.user = :userName"); // Set the parameter value query.setParameter("userName", "belen_esteban"); // Create the continuous query ContinuousQuery<String, InstaPost> continuousQuery = Search.getContinuousQuery(instaPostsCache); // Create the continuous query listener. List<InstaPost> queryPosts = new ArrayList<>(); ContinuousQueryListener<String, InstaPost> listener = new ContinuousQueryListener<String, InstaPost>() { // This method will be executed every time new items that correspond with the query arrive @Override public void resultJoining(String key, InstaPost post) { System.out.println(String.format("@%s has posted again! Hashtag: #%s", post.user, post.hashtag)); queryPosts.add(post); } }; // And the listener corresponding the query to the continuous query continuousQuery.addContinuousQueryListener(query, listener); // Add 1000 random posts for (int i = 0; i < 1000; i++) { // Add a post addRandomPost(instaPostsCache); // Await a little to see results Thread.sleep(10); } System.out.println("Total posts " + instaPostsCache.size()); System.out.println("Total posts by @belen_esteban " + queryPosts.size()); // Remove the listener. Listeners should be removed when they are no longer needed to avoid memory leaks continuousQuery.removeContinuousQueryListener(listener); // Remove the cache client.administration().removeCache(CACHE_NAME); // Stop the client and release all resources client.stop(); }