summaryrefslogtreecommitdiffstats
path: root/Classes/HJMOBigFileCache.h
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/HJMOBigFileCache.h')
-rwxr-xr-xClasses/HJMOBigFileCache.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/Classes/HJMOBigFileCache.h b/Classes/HJMOBigFileCache.h
new file mode 100755
index 0000000..0d4f7f1
--- /dev/null
+++ b/Classes/HJMOBigFileCache.h
@@ -0,0 +1,29 @@
+//
+// HJMOBigFileCache.h
+// hjlib
+//
+// Copyright Hunter and Johnson 2009, 2010, 2011
+// HJCache may be used freely in any iOS or Mac application free or commercial.
+// May be redistributed as source code only if all the original files are included.
+// See http://www.markj.net/hjcache-iphone-image-cache/
+
+#import <Foundation/Foundation.h>
+#import "HJMOFileCache.h"
+
+/*
+ HJBigFileCache is more scalable for very large caches. When the cache gets very
+ large, then the trim time gets big because trimming the size of the cache requires
+ scanning through all of its files and checking their age and size. HJBigFileCache
+ divides that probem into 10 by trimming 1/10th of the cache each day in a 10 day cycle.
+ */
+
+@interface HJMOBigFileCache : HJMOFileCache {
+
+ NSNumber* lastTrimDirNum;
+ NSDate* lastTrimDate;
+}
+
+@property (retain) NSNumber* lastTrimDirNum;
+@property (retain) NSDate* lastTrimDate;
+
+@end