Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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 | |