oskardudycz on master
Updated Azure Pipelines connect… Fixes #2480 - Increased paralle… (compare)
oskardudycz on master
Updated Azure Pipelines connect… Fixes #2480 - Increased paralle… (compare)
oskardudycz on parallel_patching_ci
oskardudycz on parallel_patching_ci
oskardudycz on parallel_patching_ci
Fixes #2480 - Increased paralle… (compare)
oskardudycz on parallel_patching_ci
Fixes #2480 - Increased paralle… (compare)
IConfigureMarten
hook to do composite configuration. One thing we could do is something like AddMarten(blah blah blah).AddProjection<MyProjectionType>(lifetime)
, and the second chained call adds an IConfigureMarten to the container, which could pull MyProjectionType out of the container.
IProjection
for custom things where you just let users get a page of events at a time, or maybe expose a single ApplyEvent()
method so you don't have the goofy "take a page, group it by stream, immediately turn it back into the original page of events" dance we do internally for custom projections
I've implemented full text search, and am busy running some tests. Here is a sample of two entries in the database:
[
{
"id": "M02.02",
"code": "M02.02",
"description": "ARTHROPATHY FOLLOWING INTESTINAL BYPASS UPPER ARM"
},
{
"id": "M02.03",
"code": "M02.03",
"description": "ARTHROPATHY FOLLOWING INTESTINAL BYPASS FOREARM"
}
]
I have a scenario in which the test input is "intestinal bypass arm", and using PhraseSearch, PlainTextSearch and WebStyleSearch all return only the first record. How do I need to structure my index (or my code) in order to get both records for the given search term?
btw, it's worth mentioning that NgramSearch returns both records, but it takes over 6 seconds to do so.
For example,
.Duplicate(x => x.Description)
.NgramIndex(x => x.Description)
partial text search
in the search box and it did not list the section on ngram index. So looks to be an issue with the Algolia search indexing, will take a look.
IProjection
that I presented here: https://event-driven.io/en/integrating_Marten/
Intersect
Linq operator. Is there any alternative way to achieve this functionality? I'm trying to check if two arrays intersect in Marten query.