Package com.flaptor.indextank.query

Examples of com.flaptor.indextank.query.PrefixTermQuery


        assertNotNull("Snippet is null", snippet);
        assertTrue("Search term not highlighted", snippet.contains("<b>Fu&szlig;ball</b>"));
        assertTrue("Snippet lost space before highlighted term", snippet.contains("der "));
        assertTrue("Snippet lost space after highlighted term: " + snippet, snippet.contains(" player"));

        query = new Query(new PrefixTermQuery("text", "fu"), "fu*", null);

        srs = searcher.search(query, 0, 1, 0, ImmutableMap.of("snippet_fields", "text", "snippet_type", "html"));
        sr = srs.getResults().iterator().next();
        snippet = sr.getField("snippet_text");
        assertNotNull("Snippet is null", snippet);
View Full Code Here

TOP

Related Classes of com.flaptor.indextank.query.PrefixTermQuery

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.