Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-08-14 | Fix versions & metadata loading issue | Jasper Van der Jeugt | 1 | -0/+5 | |
Closes #171 | |||||
2013-05-04 | Minor style changes | Jasper Van der Jeugt | 1 | -9/+7 | |
2013-05-04 | Created tests and fixed isMember function | noxx | 1 | -11/+10 | |
2013-05-04 | Added isMember functions for Store | noxx | 1 | -0/+22 | |
2013-05-03 | Close open cache files as soon as possible | Jasper Van der Jeugt | 1 | -15/+24 | |
See #124 | |||||
2013-02-06 | Use mtime instead of hashing files, much faster | Jasper Van der Jeugt | 1 | -0/+8 | |
2013-01-06 | Add TmpFile utilities | Jasper Van der Jeugt | 1 | -6/+8 | |
2012-10-29 | Pick Store from the develop branch | Jasper Van der Jeugt | 1 | -87/+120 | |
2012-08-10 | Remove unused imports in Store | Jasper Van der Jeugt | 1 | -3/+0 | |
2012-08-08 | Style nazi strikes! | Jasper Van der Jeugt | 1 | -6/+8 | |
2012-08-08 | Use lrucache to limit the in-memory resource cache to the 500 most recently | Andrew Miller | 1 | -12/+17 | |
used items. This stops swap being used on sites where not all the resources will fit in memory, but ensures that frequently used resources like templates stay in the cache. This drastically improves performance in such cases. | |||||
2012-05-12 | Memory optimizations | Jasper Van der Jeugt | 1 | -17/+32 | |
2011-05-24 | Type-safe identifiers | Jasper Van der Jeugt | 1 | -3/+3 | |
2011-05-19 | Better error messages for type errors | Jasper Van der Jeugt | 1 | -6/+6 | |
2011-05-17 | More better errors | Jasper Van der Jeugt | 1 | -4/+14 | |
2011-04-12 | Major refactoring of identifiers/resources/groups | Jasper Van der Jeugt | 1 | -2/+5 | |
2011-03-20 | Fix storing path | Jasper Van der Jeugt | 1 | -1/+1 | |
2011-03-20 | Don't require Writable for storing things | Jasper Van der Jeugt | 1 | -10/+12 | |
2011-01-25 | Add suffix to store files | Jasper Van der Jeugt | 1 | -1/+1 | |
This prevents file/directory clashes. Example: when we have a `tags` item, and a `tags/foo` item, there will be a clash since the store creates: - a file `store/tags`; - a file `store/tags/foo`. The second file requires the first file to be a directory. We simply solve this by adding a suffix to all store files, so it becomes: - a file `store/tags.hakyllstore`; - a file `store/tags/foo.hakyllstore`. | |||||
2011-01-04 | Add in-memory map to store | Jasper Van der Jeugt | 1 | -8/+43 | |
This allows us to get rid of the dependency lookup map and use one uniform cache/lookup. | |||||
2010-12-31 | Prototype of the 'cached' arrow transformer | Jasper Van der Jeugt | 1 | -20/+0 | |
2010-12-31 | Add wasModified method | Jasper Van der Jeugt | 1 | -0/+20 | |
2010-12-26 | Simple key-value store | Jasper Van der Jeugt | 1 | -0/+53 | |