Package de.anomic.yacy.dht

Examples of de.anomic.yacy.dht.VerticalWordPartitionScheme


        this.myBotIDs = new HashSet<String>();
        this.myBotIDs.add("yacy");
        this.myBotIDs.add("yacybot");
        this.myBotIDs.add("yacyproxy");
        this.netRedundancy = redundancy;
        this.scheme = new VerticalWordPartitionScheme(partitionExponent);
       
        // set up seed database
        this.seedActiveDB = openSeedTable(seedActiveDBFile);
        this.seedPassiveDB = openSeedTable(seedPassiveDBFile);
        this.seedPotentialDB = openSeedTable(seedPotentialDBFile);
View Full Code Here


        this.myOwnSeedFile = new File(newNetworkRoot, yacySeedDB.DBFILE_OWN_SEED);
        initMySeed();
        this.mySeed.setName(peername);
       
        this.netRedundancy = redundancy;
        this.scheme = new VerticalWordPartitionScheme(partitionExponent);
       
        // set up seed database
        this.seedActiveDB = openSeedTable(seedActiveDBFile);
        this.seedPassiveDB = openSeedTable(seedPassiveDBFile);
        this.seedPotentialDB = openSeedTable(seedPotentialDBFile);
View Full Code Here

TOP

Related Classes of de.anomic.yacy.dht.VerticalWordPartitionScheme

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.