Ayende Rahien
Ayende Rahien
What is it that you are trying to do? It looks like you are trying to use this for a website? Is that for tests?
Our expectation is that you'll usually build the query using `session.Query()`, to be honest. Something like: ``` var index = GetIndexQuery(session.Query() .Where(result => result.SkillId == 1)); index.Query += @" update...
That is implemented as: ``` public static IndexQuery GetIndexQuery(IQueryable queryable) { var inspector = (IRavenQueryInspector)queryable; return inspector.GetIndexQuery(isAsync: false); } ``` Sorry, forgot that it isn't available directly. My concern is...
Hi, I think we are talking past one another. Given the test above, can you explain what needs to be done to generate a failure?
This can happen when we lost connection to the server, but the test by @omerlewitz shows that the system recovers from this scenario. You can reproduce this by shutting down...
If there is a single instance, then we'll retry regardless of failure, yes. On Wed, Jul 7, 2021 at 9:45 AM Derek den Haas ***@***.***> wrote: > Are you sure...
Yes, that is the same behavior, this is done here: https://github.com/ravendb/ravendb/blob/9bf5578d58acd59d9a731eedf3edb838bc40017c/src/Raven.Client/Http/NodeSelector.cs#L117 This has been the behavior for at least the past 4 years. Can you try reproducing this independently? We'll...
FYI - we may want to use this, instead: https://github.com/ayende/ravendb/tree/RavenDB-18899%2BRavenDB-19025 That handles the merge of this and: https://github.com/ravendb/ravendb/pull/14718/files
A key problem with zip files is that each file is compressed independently. That is crucial to allow random access, after all. If I do tar.gz, on the other hand,...
@jinfeihan57 I actually continuously test the compression ratio, and it if drops below a certain value, we'll generate a new dictionary based on recent information. So it is self adjusting.