Package org.chaidb.db.index.btree.bufmgr

Examples of org.chaidb.db.index.btree.bufmgr.PageBufferManager.dump()


            //flush log buffer to disk.
            txnManager.getLogManager().flush();

            //Flush btree buffer to disk.
            PageBufferManager bpm = PageBufferManager.getInstance();
            bpm.dump(sync);

            //because dump() may generate new log records, so that
            //flush log again.
            txnManager.getLogManager().flush();
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.