Log in | Back to darenet.org

Server Commands/HASH

Syntax: HASH


Displays hash table statistics.

A hash table, or a hash map, is a data structure that associates keys with values. The primary operation it supports efficiently is a lookup: given a key (e.g. a person's name), find the corresponding value (e.g. that person's telephone number). It works by transforming the key using a hash function into a hash, a number that is used to index into an array to locate the desired location ("bucket") where the values should be. Adopted from wikipedia.org.


(Return to Main listing of Server Commands)