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

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1997, 1998, 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  *
  7.  * $Id: DbMpoolStat.java,v 11.3 2000/02/14 02:59:56 bostic Exp $
  8.  */
  9. package com.sleepycat.db;
  10. /*
  11.  * This is filled in and returned by the
  12.  * DbMpool.stat() method.
  13.  */
  14. public class DbMpoolStat
  15. {
  16.     /**
  17.      * @deprecated As of Berkeley DB 2.8.2, cachesize for mpool unavailable.
  18.      */
  19.     public int st_cachesize;            // Cache size.
  20.     public int st_cache_hit;            // Pages found in the cache.
  21.     public int st_cache_miss;           // Pages not found in the cache.
  22.     public int st_map;                  // Pages from mapped files.
  23.     public int st_page_create;          // Pages created in the cache.
  24.     public int st_page_in;              // Pages read in.
  25.     public int st_page_out;             // Pages written out.
  26.     public int st_ro_evict;             // Clean pages forced from the cache.
  27.     public int st_rw_evict;             // Dirty pages forced from the cache.
  28.     public int st_hash_buckets;         // Number of hash buckets.
  29.     public int st_hash_searches;        // Total hash chain searches.
  30.     public int st_hash_longest;         // Longest hash chain searched.
  31.     public int st_hash_examined;        // Total hash entries searched.
  32.     public int st_page_clean;           // Clean pages.
  33.     public int st_page_dirty;           // Dirty pages.
  34.     public int st_page_trickle;         // Pages written by memp_trickle.
  35.     public int st_region_wait;          // Region lock granted after wait.
  36.     public int st_region_nowait;        // Region lock granted without wait.
  37.     public int st_regsize;              // Region size.
  38. }
  39. // end of DbMpoolStat.java