⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lh_stats.pod

📁 开源的ssl算法openssl,版本0.9.8H
💻 POD
字号:
=pod=head1 NAMElh_stats, lh_node_stats, lh_node_usage_stats, lh_stats_bio,lh_node_stats_bio, lh_node_usage_stats_bio - LHASH statistics=head1 SYNOPSIS #include <openssl/lhash.h> void lh_stats(LHASH *table, FILE *out); void lh_node_stats(LHASH *table, FILE *out); void lh_node_usage_stats(LHASH *table, FILE *out); void lh_stats_bio(LHASH *table, BIO *out); void lh_node_stats_bio(LHASH *table, BIO *out); void lh_node_usage_stats_bio(LHASH *table, BIO *out);=head1 DESCRIPTIONThe B<LHASH> structure records statistics about most aspects ofaccessing the hash table.  This is mostly a legacy of Eric Youngwriting this library for the reasons of implementing what looked likea nice algorithm rather than for a particular software product.lh_stats() prints out statistics on the size of the hash table, howmany entries are in it, and the number and result of calls to theroutines in this library.lh_node_stats() prints the number of entries for each 'bucket' in thehash table.lh_node_usage_stats() prints out a short summary of the state of thehash table.  It prints the 'load' and the 'actual load'.  The load isthe average number of data items per 'bucket' in the hash table.  The'actual load' is the average number of items per 'bucket', but onlyfor buckets which contain entries.  So the 'actual load' is theaverage number of searches that will need to find an item in the hashtable, while the 'load' is the average number that will be done torecord a miss.lh_stats_bio(), lh_node_stats_bio() and lh_node_usage_stats_bio()are the same as the above, except that the output goes to a B<BIO>.=head1 RETURN VALUESThese functions do not return values.=head1 SEE ALSOL<bio(3)|bio(3)>, L<lhash(3)|lhash(3)>=head1 HISTORYThese functions are available in all versions of SSLeay and OpenSSL.This manpage is derived from the SSLeay documentation.=cut

⌨️ 快捷键说明

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