oskardudycz on bug-fixes
corrected expectation on genera… Made the Update.ApplyCallbacks/… Moving the database generator c… and 3 more (compare)
oskardudycz on bug-fixes
corrected expectation on genera… Made the Update.ApplyCallbacks/… Moving the database generator c… and 3 more (compare)
oskardudycz on master
Bumped Weasel version to enable… (compare)
oskardudycz on master
Bumped Weasel version to enable… (compare)
oskardudycz on advisory_locks_improvements
oskardudycz on advisory_locks_improvements
appending
as well for each method. Also a a link to a section in the above mentioned page with a short explanation.
IQuerySession
for doing additional lookups, I wonder if it is feasible to query against documents generated by other projections? But for that, we'd need to have some guarantees on the order of processing.projections
command I almost changed it to rebuild inline projections first before starting the async, but punted on that
Published Type
concept in the ProjectionBase. Will try to implement something around that :)
.ToAsyncEnumerable()
? My code is as follows, and it appears that the session is not always (ever?) disposed properly, leaving the connection to postgres open and occasionally resulting in connection pool exhaustion on the server end.public IAsyncEnumerable<UserAggregate> GetUsers(CancellationToken cancellationToken)
{
using var session = _store.LightweightSession();
return session.Query<UserAggregate>().Where(x => x.IsActive).ToAsyncEnumerable(cancellationToken);
}