Derek den Haas
Derek den Haas
I'm doing a simple instruction: ``` var operation = await _session .Advanced .DocumentStore .Operations .ForDatabase(_database); .SendAsync( new PatchByQueryOperation( query, new QueryOperationOptions() { AllowStale = true } ) ); await operation.WaitForCompletionAsync(TimeSpan.FromSeconds(60));...
time out function not working properly. 1. _ready calls _addHandler 2. _addHandler calls addDevice 3. addDevice calls waitForDevice 4. >> SECOND device joins (got keyboard and mouse) guess (does step...
So I was syncing to a new server and indexing and it got killed by OOM, which is not why I started this case. Half of my databases now have:...
Following output of query differs from 5.x to 6.0: ``` from result in session.Query() select { Id = result.PurchaseId DistributedId = result.Id } ``` Will work in previous versions, and...
.Where(c => c.SupplierId == null) Works, only gives results where SupplierId == null .Where(c => c.SupplierId.In([null])) Doesn't work anymore, expected the same as above, but throws exception When expected please...
The query: ``` from index 'InvoiceAll' order by Date desc, InvoiceNumber as long desc include Timings() ``` Ordering by just Date or InvoiceNumber has a normal performance, when doing both,...
This query completes in 18000ms ``` from index 'PreOrderAll' as result where (true and not exists(result.DebtorLocations)) and (result.Date = "2024-07-09T00:00:00.0000000Z") order by result.IsHandled ``` Total docs: 3 million This query...