📄 dbqueuestat.java
字号:
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1999, 2000 * Sleepycat Software. All rights reserved. * * $Id: DbQueueStat.java,v 11.5 2000/11/07 18:45:27 dda Exp $ */package com.sleepycat.db;/* * This is filled in and returned by the * Db.stat() method. */public class DbQueueStat{ public int qs_magic; // Magic number. public int qs_version; // Version number. public int qs_metaflags; // Metadata flags. public int qs_nkeys; // Number of unique keys. public int qs_ndata; // Number of data items. public int qs_pagesize; // Page size. public int qs_pages; // Data pages. public int qs_re_len; // Fixed-length record length. public int qs_re_pad; // Fixed-length record pad. public int qs_pgfree; // Bytes free in data pages. public int qs_first_recno; // First not deleted record. public int qs_cur_recno; // Last allocated record number.}// end of DbQueueStat.java
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -