Examples of lazyCompress()


Examples of com.sleepycat.je.dbi.EnvironmentImpl.lazyCompress()

            deltaInfo = null;
        }

        /* Perform lazy compression when logging a full BIN. */
        if (context.allowCompress && !doDeltaLog) {
            envImpl.lazyCompress(this);
        }

        /*
         * Write dirty LNs in deferred-write databases.  This is done after
         * compression to reduce total logging, at least for temp DBs.
View Full Code Here

Examples of com.sleepycat.je.dbi.EnvironmentImpl.lazyCompress()

        boolean targetIsLatched = true;
        try {
            if (target instanceof BIN) {
                /* First attempt to compress deleted, resident children. */
                localTracker = new LocalUtilizationTracker(envImpl);
                envImpl.lazyCompress(target, localTracker);

                /*
                 * Strip any resident LN targets right now. This may dirty
                 * the BIN if dirty LNs were written out. Note that
                 * migrated BIN entries cannot be stripped.
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.