All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.ignite.cache.query.TextQuery Maven / Gradle / Ivy

Go to download

Java-based middleware for in-memory processing of big data in a distributed environment.

There is a newer version: 3.0.0-beta1
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.ignite.cache.query;

import javax.cache.Cache;
import org.apache.ignite.IgniteCache;
import org.apache.ignite.cache.query.annotations.QueryTextField;
import org.apache.ignite.internal.processors.query.QueryUtils;
import org.apache.ignite.internal.util.typedef.internal.A;
import org.apache.ignite.internal.util.typedef.internal.S;

/**
 * 

Full Text Queries

* Ignite supports full text queries based on Apache Lucene engine. * Note that all fields that are expected to show up in text query results must be annotated with {@link QueryTextField} * *

Query usage

* Ignite TextQuery supports classic Lucene query syntax. * See Lucene classic MultiFieldQueryParser and StandardAnalyzer javadoc for details. * As an example, suppose we have data model consisting of {@code 'Employee'} class defined as follows: *
 * public class Person {
 *     private long id;
 *
 *     private String name;
 *
 *     // Index for text search.
 *     @QueryTextField
 *     private String resume;
 *     ...
 * }
 * 
* * Here is a possible query that will use Lucene text search to scan all resumes to * check if employees have {@code Master} degree: *
 * Query<Cache.Entry<Long, Person>> qry =
 *     new TextQuery(Person.class, "Master");
 *
 * // Query all cache nodes.
 * cache.query(qry).getAll();
 * 
* * @see IgniteCache#query(Query) */ public final class TextQuery extends Query> { /** */ private static final long serialVersionUID = 0L; /** */ private String type; /** SQL clause. */ private String txt; /** Limit */ private int limit; /** * Constructs query for the given search string. * * @param type Type. * @param txt Search string. */ public TextQuery(String type, String txt) { setType(type); setText(txt); } /** * Constructs query for the given search string. * * @param type Type. * @param txt Search string. * @param limit Limits response records count. If 0 or less, considered to be no limit. */ public TextQuery(String type, String txt, int limit) { setType(type); setText(txt); setLimit(limit); } /** * Constructs query for the given search string. * * @param type Type. * @param txt Search string. */ public TextQuery(Class type, String txt) { setType(type); setText(txt); } /** * Constructs query for the given search string. * * @param type Type. * @param txt Search string. * @param limit Limits response records count. If 0 or less, considered to be no limit. */ public TextQuery(Class type, String txt, int limit) { setType(type); setText(txt); setLimit(limit); } /** * Gets type for query. * * @return Type. */ public String getType() { return type; } /** * Sets type for query. * * @param type Type. * @return {@code this} For chaining. */ public TextQuery setType(Class type) { return setType(QueryUtils.typeName(type)); } /** * Sets type for query. * * @param type Type. * @return {@code this} For chaining. */ public TextQuery setType(String type) { this.type = type; return this; } /** * Gets text search string. * * @return Text search string. */ public String getText() { return txt; } /** * Sets text search string. * * @param txt Text search string. * @return {@code this} For chaining. */ public TextQuery setText(String txt) { A.notNull(txt, "txt"); this.txt = txt; return this; } /** * Gets limit to response records count. * * @return Limit value. */ public int getLimit() { return limit; } /** * Sets limit to response records count. * * @param limit If 0 or less, considered to be no limit. * @return {@code this} For chaining. */ public TextQuery setLimit(int limit) { this.limit = limit; return this; } /** {@inheritDoc} */ @Override public TextQuery setPageSize(int pageSize) { return (TextQuery)super.setPageSize(pageSize); } /** {@inheritDoc} */ @Override public TextQuery setLocal(boolean loc) { return (TextQuery)super.setLocal(loc); } /** {@inheritDoc} */ @Override public String toString() { return S.toString(TextQuery.class, this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy