Robin Luiten
Robin Luiten
There is no support at the moment of AND and OR logic as you are thinking of it I suspect. It finds matches with all documents that contain any term...
At the moment its prefix matching, which is common as far as I know in word indexed search models. I do believe it might be possible to add an inverted...
I am not an expert on full text search indexes having implemented this one and done a bunch of reading around the area at the time, but yes I believe...
Cool had not considered that, you do lose the value of the stemmer that knows how to make equivalent terms with different endings find the same things, but sounds like...
I have seen this and hope to have a look at it in next week or 2. At the moment I don't have a working elm development environment for assorted...
I had a brain wave last night about the search and realised it may not be a bug. I took your example and added examples of what the porter stemmer...
Thanks @peteygao for the response, I just hadn't got around to it yet.
Ahh yes, one of my pet peeves with the documentation output, it discards the actual names of the parameters, though to be fair with currying as in the `timeFromFields` case...
If I add aliases like the following one for Year and use them. ```Elm type alias Year = Int dateFromFields : Year -> Month -> Day -> Hour -> Minute...
Just had a suggestion that maybe a record format dateFromFields with named record fields is another option.