Package com.foundationdb.server.store.format

Examples of com.foundationdb.server.store.format.FullTextIndexFileStorageDescription


        this.name = name;
    }

    public FullTextIndexInfo init(AkibanInformationSchema ais, final FullTextIndexInfo info,
                                  File basepath) {
        FullTextIndexFileStorageDescription storage = (FullTextIndexFileStorageDescription)info.getIndex().getStorageDescription();
        path = storage.mergePath(basepath);
        casePreservingFieldNames = info.getCasePreservingFieldNames();
        defaultFieldName = info.getDefaultFieldName();
        // Put into cache.
        return ais.getCachedValue(this, new CacheValueGenerator<FullTextIndexInfo>() {
                                      @Override
View Full Code Here

TOP

Related Classes of com.foundationdb.server.store.format.FullTextIndexFileStorageDescription

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.