summaryrefslogtreecommitdiffstats
path: root/src/statfile.h
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rambler-co.ru>2009-12-14 19:03:43 +0300
committerVsevolod Stakhov <vsevolod@rambler-co.ru>2009-12-14 19:03:43 +0300
commit9f300615e8fca8076266de1a220c74a226d09979 (patch)
treefdc9f00222cb59f72a39c67431e06f958fea89be /src/statfile.h
parent2293622f1de6455d1356abdc5ff7187815c184ec (diff)
downloadrspamd-9f300615e8fca8076266de1a220c74a226d09979.tar.gz
rspamd-9f300615e8fca8076266de1a220c74a226d09979.zip
* Fix symbols cache (init lua filters before symbols cache initialization)
* Remove LRU expiration logic from statfiles and replace it with random/lowerest value expiration logic: expire random block or block with lowerest value ! statfiles are incompatible again
Diffstat (limited to 'src/statfile.h')
-rw-r--r--src/statfile.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/statfile.h b/src/statfile.h
index 43b84bdfe..a43000534 100644
--- a/src/statfile.h
+++ b/src/statfile.h
@@ -47,7 +47,6 @@ struct stat_file_section {
struct stat_file_block {
uint32_t hash1; /**< hash1 (also acts as index) */
uint32_t hash2; /**< hash2 */
- uint32_t last_access; /**< last access to block since create time of file */
double value; /**< double value */
};