Package org.apache.xindice.core.data

Examples of org.apache.xindice.core.data.Entry


            /*
             * If the key has a corresponding value in the cache, return it
             * and save a disk access.
             */
            if (cache != null) {
                Entry entry = cache.getEntryMeta(this, key);
                if (entry != null) {
                    return entry;
                }
            }

            Record record = filer.readRecord(key, true);
            if (record == null) {
                return null;
            }

            Map entryMeta = Entry.createMetaMap(record);
            return new Entry(key, entryMeta);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.xindice.core.data.Entry

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.