summaryrefslogtreecommitdiff
path: root/lib/MaildirIndexer/Index
Commit message (Collapse)AuthorAge
* indices can now return confidence levelsbayesdakkar2020-03-16
| | | | also, tests pass again
* actually working cache updating in ByAddressesdakkar2020-03-16
|
* always decont the arguments to pairdakkar2020-03-05
| | | | | this ensures that the pair behaves like a value object (i.e. it works sensibly as a hash key)
* nicer typesdakkar2020-01-26
|
* Revert "fewer temporary variables"dakkar2020-01-25
| | | | | | | This reverts commit 314ee051c170c33d2c912b6750f916b73f9cb507. I think that the bug with LEAVE messes up return values inside Log::Timeline as well
* numeric types, not-zero constantdakkar2020-01-25
|
* speed-up Bayes predictionsdakkar2020-01-25
| | | | this is *probably* correct
* fewer temporary variablesdakkar2020-01-25
| | | | | we can `return` from an inner block, even when that block is executed somewhere else: `return` is lexical!
* pre-compute more Bayes stuffdakkar2020-01-11
| | | | when all my mails were indexed, it took ages to guess the mailbox
* use a set instead of an arraydakkar2020-01-03
|
* binding FTWdakkar2020-01-03
|
* I don't understand this context/flat thingdakkar2019-12-31
|
* better fix for the array type checkdakkar2019-12-31
| | | | | | | the slip seems to take the `:delete` as its own argument, and dies forcig explicit list context on the LHS works, although I'm not sure why it's needed
* avoid type check failuredakkar2019-12-31
|
* handle receiving same file more than oncedakkar2019-12-29
| | | | | | `scan-dir`, because of `IO.watch`, can emit the same path multiple times; we don't want messing up the index (especially the bayesian one!) because of that
* new module extensiondakkar2019-12-29
|
* better predictions with small foldersdakkar2019-12-28
|
* no need to .key on pairs we don't care aboutdakkar2019-12-28
|
* more types, counts seems to work better this waydakkar2019-12-28
|
* forget about things when they go to 0dakkar2019-12-28
|
* naive-bayes classifying indexdakkar2019-12-28
| | | | half-tested by hand
* Log::Timelinedakkar2019-12-27
| | | | apparently reading from the socket is the slowest bit
* some fixes after manual testingdakkar2019-12-27
|
* restructure store, extract serverdakkar2019-12-26
now Store has a set of Index, which actually do the indexing Store also runs the scan-dir (this may not be ideal, but will do for now) Server handles I/O