Skip to content

Tags: ravendb/ravendb

Tags

7.2.6

Toggle 7.2.6's commit message
RavenDB-27349 Introduce constant scoring for exists queries in Corax.

7.1.12

Toggle 7.1.12's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #23408 from ravendb/v7.1

Merge 7.1 into release/v7.1

6.2.19

Toggle 6.2.19's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #23407 from ravendb/v6.2

Merge 6.2 into release/v6.2

7.2.5

Toggle 7.2.5's commit message
RavenDB-27070: server monitoring Etls metrics group should exclude AI…

… tasks

7.1.11

Toggle 7.1.11's commit message
RavenDB-27054 - fix Corax indexed term facets resolving the field fro…

…m DisplayFieldName/alias instead of FieldName (AggregateBy), returning empty values

6.2.18

Toggle 6.2.18's commit message
RavenDB-27054 - fix Corax indexed term facets resolving the field fro…

…m DisplayFieldName/alias instead of FieldName (AggregateBy), returning empty values

7.2.4

Toggle 7.2.4's commit message
RavenDB-26704: Revert to use .NET API GetDrives(), and applying a loc…

…k when running on macOS

7.1.10

Toggle 7.1.10's commit message
RavenDB-26704: Revert to use .NET API GetDrives(), and applying a loc…

…k when running on macOS

6.2.17

Toggle 6.2.17's commit message
RavenDB-26704: Revert to use .NET API GetDrives(), and applying a loc…

…k when running on macOS

7.2.3

Toggle 7.2.3's commit message
RavenDB-25135 Restore GetPageWithoutCache on the encrypted VoronStrea…

…m read path

Reverts the VoronStream / LowLevelTransaction part of #22574: the encrypted read path must not acquire pages through the page-locator-backed GetPage. A locator hit returns the decrypted EncryptionBuffer pointer without going through AcquirePagePointer (no Usages++), while VoronStream's paired TryReleasePage always does Usages--.

When two index readers in one read transaction reference the same decrypted page (cloned Lucene inputs over a .cfs compound file), the ref-count under-counts and the buffer is freed/zeroed while a reader still holds it -> AccessViolationException in BufferedIndexInput.ReadBytes while querying encrypted databases.

GetPageWithoutCache bypasses the locator so every acquire isref-counted. The PageLocator.Reset added in #22574 is kept. Adds a regression test.