Package com.flaptor.hounder.searcher.payload

Examples of com.flaptor.hounder.searcher.payload.SimilarityForwarder


    public ReloadableIndexHandler() {
        maxOffset = config.getInt("ReloadableIndexSearcher.maxOffset");
        maxHitsPerPage = config.getInt("ReloadableIndexSearcher.maxHitsPerPage");
        slackFactor = config.getInt("ReloadableIndexSearcher.lookupLimit");

        similarity = new SimilarityForwarder();
        querySamplePeriod = config.getInt("Searcher.query.sample.period");
        numberOfSavedQueries = config.getInt("Searcher.query.sample.size");
        savedQueries = new SavedQuery[numberOfSavedQueries];

        //FIXME: This is a potential but unlikely race condition, as we are publishing "this" to another thread
View Full Code Here

TOP

Related Classes of com.flaptor.hounder.searcher.payload.SimilarityForwarder

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.