dbhashstat.java

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

JAVA
37
字号
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1999 *	Sleepycat Software.  All rights reserved. * *	@(#)DbHashStat.java	11.3 (Sleepycat) 8/19/99 */package com.sleepycat.db;/* * This is filled in and returned by the * Db.stat() method. */public class DbHashStat{    public int hash_magic;		// Magic number.    public int hash_version;		// Version number.    public int hash_metaflags;		// Metadata flags.    public int hash_pagesize;		// Page size.    public int hash_nelem;		// Original nelem specified.    public int hash_ffactor;		// Fill factor specified at create.    public int hash_nrecs;		// Number of records.    public int hash_buckets;		// Number of hash buckets.    public int hash_free;		// Pages on the free list.    public int hash_bfree;		// Bytes free on bucket pages.    public int hash_bigpages;		// Number of big key/data pages.    public int hash_big_bfree;		// Bytes free on big item pages.    public int hash_overflows;		// Number of overflow pages.    public int hash_ovfl_free;		// Bytes free on ovfl pages.    public int hash_dup;		// Number of dup pages.    public int hash_dup_free;		// Bytes free on duplicate pages.}// end of DbHashStat.java

⌨️ 快捷键说明

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