DbHashStat.java
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  *
  7.  * $Id: DbHashStat.java,v 11.6 2000/05/04 02:54:55 dda Exp $
  8.  */
  9. package com.sleepycat.db;
  10. /*
  11.  * This is filled in and returned by the
  12.  * Db.stat() method.
  13.  */
  14. public class DbHashStat
  15. {
  16.     public int hash_magic; // Magic number.
  17.     public int hash_version; // Version number.
  18.     public int hash_metaflags; // Metadata flags.
  19.     public int hash_nkeys; // Number of unique keys.
  20.     public int hash_ndata; // Number of data items.
  21.     public int hash_pagesize; // Page size.
  22.     public int hash_nelem; // Original nelem specified.
  23.     public int hash_ffactor; // Fill factor specified at create.
  24.     public int hash_buckets; // Number of hash buckets.
  25.     public int hash_free; // Pages on the free list.
  26.     public int hash_bfree; // Bytes free on bucket pages.
  27.     public int hash_bigpages; // Number of big key/data pages.
  28.     public int hash_big_bfree; // Bytes free on big item pages.
  29.     public int hash_overflows; // Number of overflow pages.
  30.     public int hash_ovfl_free; // Bytes free on ovfl pages.
  31.     public int hash_dup; // Number of dup pages.
  32.     public int hash_dup_free; // Bytes free on duplicate pages.
  33. }
  34. // end of DbHashStat.java