⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dbqueuestat.java

📁 一高效基于主键值的文件型数据库
💻 JAVA
字号:
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1999 *	Sleepycat Software.  All rights reserved. * *	@(#)DbQueueStat.java	11.1 (Sleepycat) 8/26/99 */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_nrecs;		// Number of records.    public int qs_pages;		// Data pages.    public int qs_pagesize;		// Page size.    public int qs_pgfree;		// Bytes free in data pages.    public int qs_re_len;		// Fixed-length record length.    public int qs_re_pad;		// Fixed-length record pad.    public int qs_start;		// Start offset.    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 + -