~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/keycache.h

  • Committer: Brian Aker
  • Date: 2009-05-21 00:57:05 UTC
  • mto: This revision was merged to the branch mainline in revision 1032.
  • Revision ID: brian@gaz-20090521005705-rpq4hzhy761d3wbj
Straighten out structures (remove some some dead bits).

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
  bool in_resize;             /* true during resize operation             */
65
65
  bool resize_in_flush;       /* true during flush of resize operation    */
66
66
  bool can_be_used;           /* usage of cache for read/write is allowed */
 
67
  uint32_t hash_entries;             /* max number of entries in the hash table  */
67
68
  size_t key_cache_mem_size;      /* specified size of the cache memory       */
68
69
  uint32_t key_cache_block_size;     /* size of the page buffer of a cache block */
69
70
  ulong min_warm_blocks;         /* min number of warm blocks;               */
70
71
  ulong age_threshold;           /* age threshold for hot blocks             */
71
72
  uint64_t keycache_time;       /* total number of block link operations    */
72
 
  uint32_t hash_entries;             /* max number of entries in the hash table  */
73
73
  int hash_links;                /* max number of hash links                 */
74
74
  int hash_links_used;           /* number of hash links currently used      */
75
75
  int disk_blocks;               /* max number of blocks in the cache        */