dblogstat.java

来自「一高效基于主键值的文件型数据库」· Java 代码 · 共 36 行

JAVA
36
字号
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1998, 1999 *	Sleepycat Software.  All rights reserved. * *	@(#)DbLogStat.java	11.1 (Sleepycat) 7/25/99 */package com.sleepycat.db;/* * This is filled in and returned by the * DbLog.stat() method. */public class DbLogStat{    public int st_magic;                // Log file magic number.    public int st_version;              // Log file version number.    public int st_mode;                 // Log file mode.    public int st_lg_max;               // Maximum log file size.    public int st_w_bytes;              // Bytes to log.    public int st_w_mbytes;             // Megabytes to log.    public int st_wc_bytes;             // Bytes to log since checkpoint.    public int st_wc_mbytes;            // Megabytes to log since checkpoint.    public int st_wcount;               // Total syncs to the log.    public int st_scount;               // Total writes to the log.    public int st_region_wait;          // Region lock granted after wait.    public int st_region_nowait;        // Region lock granted without wait.    public int st_cur_file;             // Current log file number.    public int st_cur_offset;           // Current log file offset.    public int st_regsize;              // Region size.}// end of DbLogStat.java

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?