Package org.elasticsearch.index.query.MoreLikeThisQueryBuilder

Examples of org.elasticsearch.index.query.MoreLikeThisQueryBuilder.Item


                break;
            default:
                fetchSourceContext = null;
                break;
        }
        return (Item) new Item(index, type, id).routing(routing).fields(fields).version(version).versionType(versionType)
                .fetchSourceContext(fetchSourceContext);
    }
View Full Code Here


    public void testItemSerialization() throws Exception {
        int numOfTrials = 100;
        int maxArraySize = 7;
        int maxStringSize = 8;
        for (int i = 0; i < numOfTrials; i++) {
            Item item1 = generateRandomItem(maxArraySize, maxStringSize);
            String json = ItemToJSON(item1);
            MultiGetRequest.Item item2 = JSONtoItem(json);
            assertEquals(item1, item2);
        }
    }
View Full Code Here

TOP

Related Classes of org.elasticsearch.index.query.MoreLikeThisQueryBuilder.Item

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.