├── .dockerignore ├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── pull_request_template.md └── workflows │ ├── FastTests.yml │ ├── FastTestsARM.yml │ ├── StudioTests.yml │ ├── codeql-analysis.yml │ ├── compile.yml │ ├── conventions.yml │ ├── studioConventions.yml │ ├── studioLabel.yml │ └── versionLabel.yml ├── .gitignore ├── CONTRIBUTING.md ├── Directory.Packages.props ├── LICENSE.txt ├── NuGet.Config ├── RavenDB.Client.ruleset ├── RavenDB.ruleset ├── RavenDB.sln ├── RavenDB.sln.DotSettings ├── RavenDB.snk ├── SECURITY.md ├── bench ├── BulkInsert.Benchmark │ ├── BulkInsert.Benchmark.csproj │ └── Program.cs ├── Directory.Build.props ├── Indexing.Benchmark │ ├── Entities │ │ ├── Address.cs │ │ ├── Company.cs │ │ ├── Contact.cs │ │ ├── Employee.cs │ │ ├── Order.cs │ │ └── OrderLine.cs │ ├── Indexing.Benchmark.csproj │ ├── IndexingBenchmark.cs │ ├── IndexingTestRun.cs │ ├── MapIndexesBench.cs │ ├── MapReduceIndexesBench.cs │ ├── Program.cs │ └── ProgressBar.cs ├── Micro.Benchmark │ ├── Benchmarks │ │ ├── BatchedIntegerEncoding.cs │ │ ├── Dictionary.cs │ │ ├── Hardware │ │ │ ├── Compare.cs │ │ │ ├── Diff.cs │ │ │ ├── Prefetch.cs │ │ │ ├── Prefetch2.cs │ │ │ └── Search.cs │ │ ├── Hashing.XXHash32.cs │ │ ├── Hashing.XXHash64.cs │ │ ├── HopeEncoder.cs │ │ ├── IntegerEncoding.cs │ │ ├── LZ4 │ │ │ └── LZ4Benchmark.cs │ │ ├── PageLocator │ │ │ ├── PlRandomRead.cs │ │ │ └── PlRandomWrite.cs │ │ ├── Parsing │ │ │ └── DateTimeParsing.cs │ │ ├── PointerBenchmarks.cs │ │ ├── Sorting │ │ │ └── Sorting.cs │ │ ├── TypeCache.cs │ │ └── Zstd │ │ │ ├── ZstdBenchmark.cs │ │ │ └── ZstdPageBenchmark.cs │ ├── Micro.Benchmark.csproj │ ├── PageLocatorImpl │ │ ├── LowLevelTransactionStub.cs │ │ ├── PageHandlePtrV1.cs │ │ ├── PageLocatorCurrent.cs │ │ ├── PageLocatorV1.cs │ │ ├── PageLocatorV2.cs │ │ ├── PageLocatorV3.cs │ │ ├── PageLocatorV4.cs │ │ ├── PageLocatorV5.cs │ │ ├── PageLocatorV6.cs │ │ └── PageLocatorV7.cs │ ├── Program.cs │ └── Tests │ │ └── PageLocatorTests.cs ├── Regression.Benchmark │ ├── BenchBase.cs │ ├── BlittableJsonBench.cs │ ├── CompressionBench.cs │ ├── Data │ │ ├── 1.json │ │ ├── 2.json │ │ ├── 3.json │ │ ├── monsters.json │ │ └── readme.txt │ ├── HashingBench.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Regression.Benchmark.csproj ├── Scripts │ ├── batch-writes.lua │ ├── consistent-questions.lua │ ├── debug.lua │ ├── full-radnom-reads.lua │ ├── locustfile.py │ ├── queries.lua │ ├── raven-wrk-test.sh │ ├── reads.lua │ └── writes.lua ├── ServerStoreTxMerger.Benchmark │ ├── Program.cs │ ├── ServerStoreTxMerger.Benchmark.csproj │ ├── ServerStoreTxMergerBenchRealClusterTests.cs │ ├── ServerStoreTxMergerBenchTests.cs │ └── Utils.cs ├── SubscriptionFailover.Benchmark │ ├── Program.cs │ └── SubscriptionFailover.Benchmark.csproj ├── Subscriptions.Benchmark │ ├── ConcurrentSubscriptionBenchmark.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SingleSubscriptionBenchmark.cs │ └── Subscriptions.Benchmark.csproj ├── TimeSeries.Benchmark │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── TimeSeries.Benchmark.csproj ├── Voron.Benchmark │ ├── BTree │ │ ├── BTreeFillRandom.cs │ │ ├── BTreeFillSequential.cs │ │ ├── BTreeInsertRandom.cs │ │ └── BTreeReadAndIterate.cs │ ├── Configuration.cs │ ├── Corax │ │ ├── AndOrBenchmark.cs │ │ ├── CoraxEntryIdEncodings.cs │ │ ├── CoraxQueryEvaluator.cs │ │ ├── InBenchmark.cs │ │ ├── LuceneOrderByBenchmark.cs │ │ ├── OrderByBenchmark.cs │ │ └── StartWithBenchmark.cs │ ├── Program.cs │ ├── StorageBenchmark.cs │ ├── Table │ │ ├── SecondaryIndexFillRandom.cs │ │ ├── TableFillRandom.cs │ │ ├── TableFillSequential.cs │ │ ├── TableInsertRandom.cs │ │ └── TableReadAndIterate.cs │ ├── Utils.cs │ └── Voron.Benchmark.csproj └── VxSort.Benchmark │ ├── .gitignore │ ├── Bench.cs │ ├── SmallSortBench.cs │ ├── SortBench.cs │ ├── Utils │ ├── DatatableJsonExporter.cs │ ├── FullNameProvider.cs │ ├── SimpleJson.cs │ ├── TimePerNColumn.cs │ └── ValueGenerator.cs │ ├── VxSort.Benchmark.csproj │ ├── drop-to-console.sh │ ├── prep.sh │ ├── restore-gfx.sh │ ├── run.cmd │ └── run.sh ├── debug.Dockerfile ├── docker ├── .gitignore ├── build-nanoserver.ps1 ├── build-ubuntu.ps1 ├── common.ps1 ├── compose │ ├── linux-cluster │ │ ├── README.md │ │ ├── destroy.ps1 │ │ ├── docker-compose.yml │ │ └── run.ps1 │ └── win-cluster │ │ ├── README.md │ │ ├── destroy.ps1 │ │ ├── docker-compose.yml │ │ └── run.ps1 ├── debug │ ├── build-ubuntu-debug.ps1 │ └── ravendb-ubuntu-debug │ │ └── Dockerfile ├── manifest │ ├── manifest.yml │ └── tag.ps1 ├── publish-multiarch.ps1 ├── publish-nanoserver.ps1 ├── publish-ubuntu.ps1 ├── ravendb-nanoserver │ ├── Dockerfile.1809 │ ├── Dockerfile.ltsc2022 │ └── run-raven.ps1 ├── ravendb-ubuntu │ ├── Dockerfile.arm32v7 │ ├── Dockerfile.arm64v8 │ ├── Dockerfile.x64 │ ├── cert-utils.sh │ ├── healthcheck.sh │ ├── link-legacy-datadir.sh │ ├── run-raven.sh │ └── server-utils.sh ├── readme.md ├── run-linux.ps1 └── run-nanoserver.ps1 ├── docs ├── Logo.png ├── Logos │ ├── RavenDBliconBlack.ai │ ├── RavenDBliconBlack.eps │ ├── RavenDBliconBlack.png │ ├── RavenDBliconBurgandy.ai │ ├── RavenDBliconBurgandy.eps │ ├── RavenDBliconBurgandy.png │ ├── RavenDBlogo.ai │ ├── RavenDBlogo.eps │ ├── RavenDBlogo.png │ ├── RavenDBlogoBlack.ai │ ├── RavenDBlogoBlack.eps │ ├── RavenDBlogoBlack.png │ ├── RavenDBlogoV2.ai │ ├── RavenDBlogoV2.eps │ ├── RavenDBlogoV2.png │ ├── RavenDBlogoV2Black.ai │ ├── RavenDBlogoV2Black.eps │ └── RavenDBlogoV2Black.png ├── acknowledgements.txt ├── agpl.txt ├── contributing.txt ├── readme.linux.txt ├── readme.windows.txt └── readmeScreenshot.png ├── git_setup.cmd ├── git_setup.sh ├── global.json ├── install_build_prerequisites.sh ├── install_runtime_prerequisites.sh ├── libs ├── Jint.3.0.32-ravendb.nupkg ├── Lextm.SharpSnmpLib.Engine.11.3.102.nupkg ├── Lucene.Net.3.0.60010.nupkg ├── Lucene.Net.Contrib.Spatial.NTS.3.0.60010.nupkg ├── Microsoft.Diagnostics.Runtime-ravendb.1.0.8.nupkg ├── Raven.CodeAnalysis.1.0.11.nupkg ├── XunitLogger.4.0.991.nupkg ├── librvnpal │ ├── librvnpal.arm.32.so │ ├── librvnpal.arm.64.so │ ├── librvnpal.linux.x64.so │ ├── librvnpal.mac.arm64.dylib │ ├── librvnpal.mac.x64.dylib │ ├── librvnpal.win.x64.dll │ ├── librvnpal.win.x86.dll │ ├── librvnpal.win7.x64.dll │ └── librvnpal.win7.x86.dll ├── libzstd │ ├── libzstd.arm.32.so │ ├── libzstd.arm.64.so │ ├── libzstd.linux.x64.so │ ├── libzstd.mac.arm64.dylib │ ├── libzstd.mac.x64.dylib │ ├── libzstd.win.x64.dll │ └── libzstd.win.x86.dll ├── microsoft.dotnet.xunit.performance.1.0.0-alpha-build0041.nupkg ├── microsoft.dotnet.xunit.performance.run.core.1.0.0-alpha-build0041.nupkg └── microsoft.dotnet.xunit.performance.runner.cli.1.0.0-alpha-build0041.nupkg ├── publish-stable-release.ps1 ├── readme.md ├── scripts ├── Copy-FileHash.ps1 ├── Get-DestinationFilePath.ps1 ├── archive.ps1 ├── assets │ ├── bin │ │ ├── 7za.exe │ │ ├── nuget.exe │ │ └── tar.exe │ ├── icon.png │ ├── run.ps1 │ ├── run.sh │ ├── setup-as-service.ps1 │ └── uninstall-service.ps1 ├── buildProjects.ps1 ├── certificates │ ├── .gitignore │ ├── bash │ │ ├── cert.conf │ │ ├── generate-selfsigned-cert.sh │ │ ├── generate-server-cert.sh │ │ ├── openssl_ca.cnf │ │ ├── openssl_intermediate.cnf │ │ └── reset-replacement-status.sh │ └── powershell │ │ ├── dev-create-authenticated-cluster-with-subdomains.ps1 │ │ ├── dev-create-authenticated-cluster.ps1 │ │ ├── generate-server-cert.ps1 │ │ └── obtain-cluster-admin-client-cert.ps1 ├── checkLastExitCode.ps1 ├── checkPrerequisites.ps1 ├── clean.ps1 ├── copyAssets.ps1 ├── docker.ps1 ├── dotnet │ └── switch-framework.ps1 ├── env.ps1 ├── exec.ps1 ├── getScriptDirectory.ps1 ├── githubActions │ ├── claSigned.ps1 │ ├── commitMessageConventions.ps1 │ ├── commitWhitespaceConventions.ps1 │ ├── sendSlackNotification.sh │ └── set_github_label.ps1 ├── githubReleases.ps1 ├── help.ps1 ├── linux │ ├── enable-debugging.sh │ ├── install-daemon.sh │ ├── pkg │ │ ├── .gitignore │ │ ├── deb │ │ │ ├── .dockerignore │ │ │ ├── assets │ │ │ │ ├── build.sh │ │ │ │ ├── ravendb │ │ │ │ │ ├── debian │ │ │ │ │ │ ├── changelog │ │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── control_22 │ │ │ │ │ │ ├── control_legacy │ │ │ │ │ │ ├── copyright │ │ │ │ │ │ ├── ravendb.links │ │ │ │ │ │ ├── ravendb.postinst │ │ │ │ │ │ ├── ravendb.postrm │ │ │ │ │ │ ├── ravendb.service │ │ │ │ │ │ └── rules │ │ │ │ │ └── etc │ │ │ │ │ │ ├── ld.so.conf.d │ │ │ │ │ │ └── ravendb.conf │ │ │ │ │ │ └── ravendb │ │ │ │ │ │ └── settings.json │ │ │ │ └── test.sh │ │ │ ├── build-deb.ps1 │ │ │ ├── build-deb.sh │ │ │ ├── build-deb_ubuntu-bionic_amd64.ps1 │ │ │ ├── build-deb_ubuntu-bionic_arm64.ps1 │ │ │ ├── build-deb_ubuntu-bionic_armhf.ps1 │ │ │ ├── build-deb_ubuntu-bionic_armhf.sh │ │ │ ├── build-deb_ubuntu-focal_amd64.ps1 │ │ │ ├── build-deb_ubuntu-focal_arm64.ps1 │ │ │ ├── build-deb_ubuntu-focal_armhf.ps1 │ │ │ ├── build-deb_ubuntu-jammy_amd64.ps1 │ │ │ ├── build-deb_ubuntu-jammy_arm64.ps1 │ │ │ ├── build-deb_ubuntu-jammy_armhf.ps1 │ │ │ ├── build-deb_ubuntu-noble_amd64.ps1 │ │ │ ├── check_docker_cross.sh │ │ │ ├── set-raven-platform-amd64.ps1 │ │ │ ├── set-raven-platform-amd64.sh │ │ │ ├── set-raven-platform-arm64.ps1 │ │ │ ├── set-raven-platform-arm64.sh │ │ │ ├── set-raven-platform-armhf.ps1 │ │ │ ├── set-raven-platform-armhf.sh │ │ │ ├── set-raven-version-env.ps1 │ │ │ ├── set-raven-version-env.sh │ │ │ ├── set-ubuntu-bionic.ps1 │ │ │ ├── set-ubuntu-bionic.sh │ │ │ ├── set-ubuntu-focal.ps1 │ │ │ ├── set-ubuntu-focal.sh │ │ │ ├── set-ubuntu-jammy.ps1 │ │ │ ├── set-ubuntu-jammy.sh │ │ │ ├── set-ubuntu-noble.ps1 │ │ │ ├── set-ubuntu-noble.sh │ │ │ ├── test-deb-docker.ps1 │ │ │ ├── test-deb-docker_ubuntu-bionic_amd64.ps1 │ │ │ ├── test-deb-docker_ubuntu-bionic_arm64.ps1 │ │ │ ├── test-deb-docker_ubuntu-bionic_armhf.ps1 │ │ │ ├── test-deb-docker_ubuntu-focal_amd64.ps1 │ │ │ ├── test-deb-docker_ubuntu-jammy_amd64.ps1 │ │ │ ├── test-deb-vagrant.ps1 │ │ │ ├── test-deb-vagrant_ubuntu-bionic.ps1 │ │ │ ├── test-deb-vagrant_ubuntu-focal.ps1 │ │ │ ├── test-deb-vagrant_ubuntu-jammy.ps1 │ │ │ ├── ubuntu_amd64.Dockerfile │ │ │ ├── ubuntu_multiarch.Dockerfile │ │ │ ├── ubuntu_test.Dockerfile │ │ │ └── vagrant │ │ │ │ ├── .gitignore │ │ │ │ ├── bionic │ │ │ │ └── Vagrantfile │ │ │ │ ├── focal │ │ │ │ └── Vagrantfile │ │ │ │ ├── jammy │ │ │ │ └── Vagrantfile │ │ │ │ └── test-setup │ │ │ │ ├── a │ │ │ │ └── Vagrantfile │ │ │ │ ├── b │ │ │ │ └── Vagrantfile │ │ │ │ └── env.ps1 │ │ └── linux-packaging.md │ ├── ravendb.service │ ├── ravendb.watchdog.sh │ ├── ravendbd │ ├── setupDockerForStacktraces.sh │ └── test │ │ ├── .gitignore │ │ ├── centos7 │ │ └── Vagrantfile │ │ ├── ubuntu16 │ │ └── Vagrantfile │ │ └── ubuntu18 │ │ └── Vagrantfile ├── nuget.ps1 ├── package.ps1 ├── raspberry-pi │ ├── ravendb.watchdog.sh │ ├── ravendbd │ ├── run.sh │ ├── setup.sh │ ├── start.sh │ └── updater.sh ├── restore.ps1 ├── runtime.ps1 ├── schemaInfo.ps1 ├── sign.ps1 ├── target.ps1 ├── updateFrameworkVersion.ps1 ├── updateSourceWithBuildInfo.ps1 ├── updateTargetFramework.ps1 ├── upload.ps1 ├── validateAssembly.ps1 ├── validateRuntimeConfig.ps1 └── version.ps1 ├── src ├── CommonAssemblyInfo.Linux.cs ├── CommonAssemblyInfo.Windows.cs ├── CommonAssemblyInfo.cs ├── Corax │ ├── Analyzers │ │ ├── Analyzer.cs │ │ └── AnalyzerScope.cs │ ├── Constants.cs │ ├── Corax.csproj │ ├── FieldIndexingMode.cs │ ├── Indexing │ │ ├── EntriesModifications.cs │ │ ├── IIndexEntryBuilder.cs │ │ ├── IndexWriter.Debug.cs │ │ ├── IndexWriter.Exceptions.cs │ │ ├── IndexWriter.IndexEntryBuilder.cs │ │ ├── IndexWriter.cs │ │ ├── IndexedField.cs │ │ ├── RecordedTerm.cs │ │ ├── TermIdMask.cs │ │ └── TermInEntryModification.cs │ ├── IndexingEnvironment.cs │ ├── Mappings │ │ ├── FieldMetadata.cs │ │ ├── IndexFieldBinding.cs │ │ ├── IndexFieldsMapping.cs │ │ └── IndexFieldsMappingBuilder.cs │ ├── Pipeline │ │ ├── ExactTransformer.cs │ │ ├── FilterTransformer.cs │ │ ├── FilteringTokenFilter.cs │ │ ├── IFilter.cs │ │ ├── ITokenizer.cs │ │ ├── ITransformer.cs │ │ ├── KeywordTokenizer.cs │ │ ├── LowerCaseTransformer.cs │ │ ├── Parsing │ │ │ ├── ParsingConstants.cs │ │ │ ├── ScalarParsers.cs │ │ │ ├── ScalarTokenizers.cs │ │ │ ├── ScalarTransformers.cs │ │ │ ├── StandardParsers.cs │ │ │ ├── StandardTokenizers.cs │ │ │ ├── StandardTransformers.cs │ │ │ ├── VectorParsers.cs │ │ │ └── VectorTokenizers.cs │ │ ├── Token.cs │ │ └── WhitespaceTokenizer.cs │ ├── Querying │ │ ├── IndexSearcher.Aggregations.cs │ │ ├── IndexSearcher.BinaryMatches.cs │ │ ├── IndexSearcher.Boost.cs │ │ ├── IndexSearcher.Memoization.cs │ │ ├── IndexSearcher.MultiUnaryMatches.cs │ │ ├── IndexSearcher.PhraseMatch.cs │ │ ├── IndexSearcher.Search.cs │ │ ├── IndexSearcher.Sorting.cs │ │ ├── IndexSearcher.Suggestions.cs │ │ ├── IndexSearcher.TermMatch.cs │ │ ├── IndexSearcher.cs │ │ ├── Matches │ │ │ ├── AllEntriesMatch.cs │ │ │ ├── AndNotMatch.Erasure.cs │ │ │ ├── AndNotMatch.cs │ │ │ ├── BinaryMatch.Boolean.cs │ │ │ ├── BinaryMatch.Erasure.cs │ │ │ ├── BinaryMatch.cs │ │ │ ├── BoostingMatch.cs │ │ │ ├── EmptyAggregationProvider.cs │ │ │ ├── IncludeNonExistingMatch.cs │ │ │ ├── IncludeNullMatch.cs │ │ │ ├── MemoizationMatch.Erasure.cs │ │ │ ├── MemoizationMatch.Provider.cs │ │ │ ├── MemoizationMatch.cs │ │ │ ├── Meta │ │ │ │ ├── IAggregationProvider.cs │ │ │ │ ├── IBoostingMarker.cs │ │ │ │ ├── IMemoizationMatchSource.cs │ │ │ │ ├── IQueryMatch.cs │ │ │ │ ├── ITermProvider.cs │ │ │ │ ├── MergeHelper.cs │ │ │ │ ├── QueryInspectionNode.cs │ │ │ │ ├── RangeMarker.cs │ │ │ │ ├── SortHelper.cs │ │ │ │ └── UnaryMatchOperation.cs │ │ │ ├── MultiTermMatch.Erasure.cs │ │ │ ├── MultiTermMatch.cs │ │ │ ├── MultiUnaryMatch.Erasure.cs │ │ │ ├── MultiUnaryMatch.cs │ │ │ ├── PharseMatch.cs │ │ │ ├── SortingMatches │ │ │ │ ├── CompactKeyComparer.cs │ │ │ │ ├── HeapSorterBuilder.cs │ │ │ │ ├── Meta │ │ │ │ │ ├── IMatchComparer.cs │ │ │ │ │ ├── ISpatialComparer.cs │ │ │ │ │ ├── MatchCompareFieldType.cs │ │ │ │ │ └── SortingDataTransfer.cs │ │ │ │ ├── NumericalMaxHeapSorter.cs │ │ │ │ ├── SortingMatch.BasicsComparers.cs │ │ │ │ ├── SortingMatch.Comparers.cs │ │ │ │ ├── SortingMatch.Erasure.cs │ │ │ │ ├── SortingMatch.cs │ │ │ │ ├── SortingMultiMatch.Comparers.cs │ │ │ │ ├── SortingMultiMatch.Erasure.cs │ │ │ │ ├── SortingMultiMatch.Helpers.cs │ │ │ │ ├── SortingMultiMatch.IndirectComparers.cs │ │ │ │ ├── SortingMultiMatch.cs │ │ │ │ └── TextualMaxHeapSorter.cs │ │ │ ├── SpatialMatch │ │ │ │ └── SpatialMatch.cs │ │ │ ├── SuggestionTermProvider.cs │ │ │ ├── TermMatch.cs │ │ │ └── TermProviders │ │ │ │ ├── TermProvider.Contains.cs │ │ │ │ ├── TermProvider.EndsWith.cs │ │ │ │ ├── TermProvider.Exists.cs │ │ │ │ ├── TermProvider.In.cs │ │ │ │ ├── TermProvider.NotContains.cs │ │ │ │ ├── TermProvider.NotEndsWith.cs │ │ │ │ ├── TermProvider.NotStartsWith.cs │ │ │ │ ├── TermProvider.NumericRange.cs │ │ │ │ ├── TermProvider.Regex.cs │ │ │ │ ├── TermProvider.StartWith.cs │ │ │ │ └── TermProvider.TermRange.cs │ │ ├── MultiTermMatches │ │ │ ├── IndexSearcher.MultiTermMatch.Simple.cs │ │ │ ├── IndexSearcher.MultiTermMatches.Common.cs │ │ │ ├── IndexSearcher.MultiTermMatches.In.cs │ │ │ └── IndexSearcher.MultiTermMatches.Ranges.cs │ │ ├── SpatialReader.cs │ │ ├── Spatials │ │ │ └── IndexSearcher.Spatial.cs │ │ └── TermsReader.cs │ ├── SupportedFeatures.cs │ └── Utils │ │ ├── BlittableIterator.cs │ │ ├── Bm25Relevance.cs │ │ ├── ByteStringIterator.cs │ │ ├── CoraxSpatialPointEntry.cs │ │ ├── EmptyIterator.cs │ │ ├── EntryIdEncodings.cs │ │ ├── EntryTermsReader.cs │ │ ├── EntryTermsWriter.cs │ │ ├── FieldsCache.cs │ │ ├── ICoraxStatsScope.cs │ │ ├── OrderMetadata.cs │ │ ├── Spatial │ │ ├── SpatialRelation.cs │ │ ├── SpatialResult.cs │ │ ├── SpatialUnits.cs │ │ └── SpatialUtils.cs │ │ ├── SuggestionsKeys.cs │ │ ├── TermQueryItem.cs │ │ └── TimeFields.cs ├── Directory.Build.props ├── Directory.Build.targets ├── Raven.Client │ ├── Constants.cs │ ├── Conventions.cs │ ├── DocumentationUrls.cs │ ├── Documents │ │ ├── Attachments │ │ │ └── AttachmentType.cs │ │ ├── BulkInsert │ │ │ ├── BulkInsertOperation.cs │ │ │ ├── BulkInsertOperationBase.cs │ │ │ ├── BulkInsertOptions.cs │ │ │ ├── BulkInsertWriter.cs │ │ │ └── BulkInsertWriterBase.cs │ │ ├── Changes │ │ │ ├── AbstractDatabaseChanges.cs │ │ │ ├── AbstractDatabaseConnectionState.cs │ │ │ ├── AggressiveCacheDatabaseChanges.cs │ │ │ ├── ChangeNotification.cs │ │ │ ├── ChangesObservable.cs │ │ │ ├── ChangesSupportedFeatures.cs │ │ │ ├── DatabaseChange.cs │ │ │ ├── DatabaseChanges.cs │ │ │ ├── DatabaseChangesOptions.cs │ │ │ ├── DatabaseConnectionState.cs │ │ │ ├── EvictItemsFromCacheBasedOnChanges.cs │ │ │ ├── IChangesConnectionState.cs │ │ │ ├── IChangesObservable.cs │ │ │ ├── IConnectableChanges.cs │ │ │ ├── ICounterChanges.cs │ │ │ ├── IDatabaseChanges.cs │ │ │ ├── IDocumentChanges.cs │ │ │ ├── IIndexChanges.cs │ │ │ ├── IOperationChanges.cs │ │ │ └── ITimeSeriesChanges.cs │ │ ├── Commands │ │ │ ├── Batches │ │ │ │ ├── BatchCommand.cs │ │ │ │ ├── BatchOptions.cs │ │ │ │ ├── BatchPatchCommandData.cs │ │ │ │ ├── CopyAttachmentCommandData.cs │ │ │ │ ├── CopyTimeSeriesCommandData.cs │ │ │ │ ├── CountersBatchCommandData.cs │ │ │ │ ├── DeleteAttachmentCommandData.cs │ │ │ │ ├── DeleteCommandData.cs │ │ │ │ ├── DeleteCompareExchangeCommandData.cs │ │ │ │ ├── DeletePrefixedCommandData.cs │ │ │ │ ├── ICommandData.cs │ │ │ │ ├── JsonPatchCommandData.cs │ │ │ │ ├── MoveAttachmentCommandData.cs │ │ │ │ ├── PatchCommandData.cs │ │ │ │ ├── PutAttachmentCommandData.cs │ │ │ │ ├── PutAttachmentCommandHelper.cs │ │ │ │ ├── PutCommandDataBase.cs │ │ │ │ ├── PutCompareExchangeCommandData.cs │ │ │ │ ├── PutResult.cs │ │ │ │ ├── RevisionsCommandData.cs │ │ │ │ └── TimeSeriesBatchCommandData.cs │ │ │ ├── ClaimDomainResult.cs │ │ │ ├── ConditionalGetDocumentsCommand.cs │ │ │ ├── CreateSubscriptionCommand.cs │ │ │ ├── DeleteDocumentCommand.cs │ │ │ ├── DeleteRevisionsCommand.cs │ │ │ ├── DeleteSubscriptionsCommand.cs │ │ │ ├── DocumentSizeDetails.cs │ │ │ ├── DropSubscriptionConnectionCommand.cs │ │ │ ├── ExplainQueryCommand.cs │ │ │ ├── GetCollectionFieldsCommand.cs │ │ │ ├── GetConflictsCommand.cs │ │ │ ├── GetConflictsResult.cs │ │ │ ├── GetDocumentSizeCommand.cs │ │ │ ├── GetDocumentsCommand.cs │ │ │ ├── GetDocumentsResult.cs │ │ │ ├── GetNextOperationIdCommand.cs │ │ │ ├── GetNextServerOperationIdCommand.cs │ │ │ ├── GetRemoteTaskTopologyCommand.cs │ │ │ ├── GetRevisionsBinEntryCommand.cs │ │ │ ├── GetRevisionsCommand.cs │ │ │ ├── GetSubscriptionStateCommand.cs │ │ │ ├── GetSubscriptionsCommand.cs │ │ │ ├── GetTcpInfoForRemoteTaskCommand.cs │ │ │ ├── HeadAttachmentCommand.cs │ │ │ ├── HeadDocumentCommand.cs │ │ │ ├── HiLoReturnCommand.cs │ │ │ ├── KillOperationCommand.cs │ │ │ ├── KillServerOperationCommand.cs │ │ │ ├── MultiGet │ │ │ │ ├── GetRequest.cs │ │ │ │ ├── GetResponse.cs │ │ │ │ └── MultiGetCommand.cs │ │ │ ├── NextHiLoCommand.cs │ │ │ ├── NextIdentityForCommand.cs │ │ │ ├── PreviewCollectionCommand.cs │ │ │ ├── PutDocumentCommand.cs │ │ │ ├── QueryCommand.cs │ │ │ ├── QueryStreamCommand.cs │ │ │ ├── RevertRevisionsByIdCommand.cs │ │ │ ├── SeedIdentityForCommand.cs │ │ │ ├── SizeDetails.cs │ │ │ ├── StreamCommand.cs │ │ │ ├── StreamResult.cs │ │ │ └── UpdateSubscriptionCommand.cs │ │ ├── Conventions │ │ │ ├── DocumentConventions.cs │ │ │ └── Inflector.cs │ │ ├── DataArchival │ │ │ └── ArchivedDataProcessingBehavior.cs │ │ ├── DocumentStore.cs │ │ ├── DocumentStoreBase.cs │ │ ├── IDocumentStore.cs │ │ ├── Identity │ │ │ ├── AsyncDocumentIdGeneration.cs │ │ │ ├── AsyncHiLoIdGenerator.cs │ │ │ ├── AsyncMultiDatabaseHiLoIdGenerator.cs │ │ │ ├── AsyncMultiTypeHiLoIdGenerator.cs │ │ │ ├── GenerateEntityIdOnTheClient.cs │ │ │ ├── HiLoResult.cs │ │ │ └── IHiLoIdGenerator.cs │ │ ├── Indexes │ │ │ ├── AbstractGenericIndexCreationTask.cs │ │ │ ├── AbstractIndexCreationTask.cs │ │ │ ├── AbstractJavaScriptIndexCreationTask.cs │ │ │ ├── AbstractMultiMapIndexCreationTask.cs │ │ │ ├── AdditionalAssembly.cs │ │ │ ├── AggregationOperation.cs │ │ │ ├── Analysis │ │ │ │ └── AnalyzerDefinition.cs │ │ │ ├── AutoIndexDefinition.cs │ │ │ ├── BoostedValue.cs │ │ │ ├── Counters │ │ │ │ ├── AbstractCountersIndexCreationTask.cs │ │ │ │ ├── AbstractGenericCountersIndexCreationTask.cs │ │ │ │ ├── AbstractJavaScriptCountersIndexCreationTask.cs │ │ │ │ ├── AbstractMultiMapCountersIndexCreationTask.cs │ │ │ │ ├── CounterEntry.cs │ │ │ │ ├── CountersIndexDefinition.cs │ │ │ │ └── CountersIndexDefinitionBuilder.cs │ │ │ ├── CreateFieldOptions.cs │ │ │ ├── ExpressionOperatorPrecedence.cs │ │ │ ├── ExpressionOperatorPrecedenceExtension.cs │ │ │ ├── ExpressionStringBuilder.cs │ │ │ ├── FieldIndexing.cs │ │ │ ├── FieldStorage.cs │ │ │ ├── FieldTermVector.cs │ │ │ ├── FieldUtil.cs │ │ │ ├── GroupByArrayBehavior.cs │ │ │ ├── IAttachmentObject.cs │ │ │ ├── IJsonObject.cs │ │ │ ├── IndexConfiguration.cs │ │ │ ├── IndexCreation.cs │ │ │ ├── IndexDefinition.cs │ │ │ ├── IndexDefinitionBase.cs │ │ │ ├── IndexDefinitionBuilder.cs │ │ │ ├── IndexDefinitionClusterState.cs │ │ │ ├── IndexDefinitionHelper.cs │ │ │ ├── IndexErrors.cs │ │ │ ├── IndexFailureInformation.cs │ │ │ ├── IndexFieldOptions.cs │ │ │ ├── IndexLockMode.cs │ │ │ ├── IndexPerformanceStats.cs │ │ │ ├── IndexPriority.cs │ │ │ ├── IndexProgress.cs │ │ │ ├── IndexRunningStatus.cs │ │ │ ├── IndexSourceType.cs │ │ │ ├── IndexState.cs │ │ │ ├── IndexStats.cs │ │ │ ├── IndexType.cs │ │ │ ├── IndexingError.cs │ │ │ ├── IndexingOperation.cs │ │ │ ├── IndexingPerformanceOperation.cs │ │ │ ├── IndexingPerformanceStats.cs │ │ │ ├── IndexingStatus.cs │ │ │ ├── JSBeautify.cs │ │ │ ├── LuceneIndexInputType.cs │ │ │ ├── LuceneMergeDetails.cs │ │ │ ├── MapReduce │ │ │ │ └── OutputReduceToCollectionReference.cs │ │ │ ├── NumberUtil.cs │ │ │ ├── PutIndexResult.cs │ │ │ ├── RangeType.cs │ │ │ ├── RavenMethodAttribute.cs │ │ │ ├── ReduceRunDetails.cs │ │ │ ├── RollingIndex.cs │ │ │ ├── SearchEngineType.cs │ │ │ ├── Spatial │ │ │ │ ├── SpatialOptions.cs │ │ │ │ └── SpatialOptionsFactory.cs │ │ │ ├── StorageCommitDetails.cs │ │ │ ├── Suggestions │ │ │ │ └── SuggestionOptions.cs │ │ │ └── TimeSeries │ │ │ │ ├── AbstractGenericTimeSeriesIndexCreationTask.cs │ │ │ │ ├── AbstractJavaScriptTimeSeriesIndexCreationTask.cs │ │ │ │ ├── AbstractMultiMapTimeSeriesIndexCreationTask.cs │ │ │ │ ├── AbstractTimeSeriesIndexCreationTask.cs │ │ │ │ ├── TimeSeriesIndexDefinition.cs │ │ │ │ ├── TimeSeriesIndexDefinitionBuilder.cs │ │ │ │ └── TimeSeriesSegment.cs │ │ ├── Linq │ │ │ ├── ExpressionInfo.cs │ │ │ ├── IDocumentQueryGenerator.cs │ │ │ ├── IRavenQueryProvider.cs │ │ │ ├── IRavenQueryable.cs │ │ │ ├── Indexing │ │ │ │ └── IndexingLinqExtensions.cs │ │ │ ├── LinqPathProvider.cs │ │ │ ├── QueryMethodConverter.cs │ │ │ ├── RavenQueryInspector.cs │ │ │ ├── RavenQueryProvider.cs │ │ │ ├── RavenQueryProviderProcessor.cs │ │ │ └── RavenQueryableExtensions.cs │ │ ├── LinqExtensions.cs │ │ ├── Operations │ │ │ ├── AbstractDatabaseStatistics.cs │ │ │ ├── Analyzers │ │ │ │ ├── DeleteAnalyzerOperation.cs │ │ │ │ └── PutAnalyzersOperation.cs │ │ │ ├── Attachments │ │ │ │ ├── AttachmentDetails.cs │ │ │ │ ├── AttachmentEnumeratorResult.cs │ │ │ │ ├── AttachmentResult.cs │ │ │ │ ├── AttachmentStream.cs │ │ │ │ ├── DeleteAttachmentOperation.cs │ │ │ │ ├── GetAttachmentOperation.cs │ │ │ │ ├── GetAttachmentsOperation.cs │ │ │ │ ├── LimitedStream.cs │ │ │ │ └── PutAttachmentOperation.cs │ │ │ ├── Backups │ │ │ │ ├── BackupConfiguration.cs │ │ │ │ ├── BackupEncryptionSettings.cs │ │ │ │ ├── BackupOperation.cs │ │ │ │ ├── BackupProgress.cs │ │ │ │ ├── BackupResult.cs │ │ │ │ ├── BackupSettings.cs │ │ │ │ ├── BackupStatus.cs │ │ │ │ ├── BackupTaskType.cs │ │ │ │ ├── BackupType.cs │ │ │ │ ├── BackupUploadMode.cs │ │ │ │ ├── DelayBackupOperation.cs │ │ │ │ ├── GetPeriodicBackupStatusOperation.cs │ │ │ │ ├── PeriodicBackupConfiguration.cs │ │ │ │ ├── PeriodicBackupStatus.cs │ │ │ │ ├── RestoreBackupConfiguration.cs │ │ │ │ ├── RetentionPolicy.cs │ │ │ │ ├── Sharding │ │ │ │ │ ├── GetShardedPeriodicBackupStatusOperation.cs │ │ │ │ │ └── ShardRestoreSettings.cs │ │ │ │ ├── SnapshotSettings.cs │ │ │ │ ├── StartBackupOperation.cs │ │ │ │ ├── UpdatePeriodicBackupOperation.cs │ │ │ │ └── UpdatePeriodicBackupOperationResult.cs │ │ │ ├── BulkInsertObserver.cs │ │ │ ├── BulkOperationResult.cs │ │ │ ├── CollectionOperationOptions.cs │ │ │ ├── CollectionStatistics.cs │ │ │ ├── CompareExchange │ │ │ │ ├── CompareExchangeResult.cs │ │ │ │ ├── CompareExchangeValue.cs │ │ │ │ ├── CompareExchangeValueResultParser.cs │ │ │ │ ├── DeleteCompareExchangeValueOperation.cs │ │ │ │ ├── GetCompareExchangeValueOperation.cs │ │ │ │ ├── GetCompareExchangeValuesOperation.cs │ │ │ │ └── PutCompareExchangeValueOperation.cs │ │ │ ├── Configuration │ │ │ │ ├── ClientConfiguration.cs │ │ │ │ ├── GetClientConfigurationOperation.cs │ │ │ │ ├── GetStudioConfigurationOperation.cs │ │ │ │ ├── PutClientConfigurationOperation.cs │ │ │ │ └── StudioConfiguration.cs │ │ │ ├── ConnectionStrings │ │ │ │ ├── ConnectionString.cs │ │ │ │ ├── GetConnectionStringsOperation.cs │ │ │ │ ├── PutConnectionStringOperation.cs │ │ │ │ └── RemoveConnectionStringOperation.cs │ │ │ ├── Counters │ │ │ │ ├── CounterBatch.cs │ │ │ │ ├── CounterBatchOperation.cs │ │ │ │ ├── CountersDetail.cs │ │ │ │ └── GetCountersOperation.cs │ │ │ ├── DataArchival │ │ │ │ ├── ConfigureDataArchivalOperation.cs │ │ │ │ ├── ConfigureDataArchivalOperationResult.cs │ │ │ │ └── DataArchivalConfiguration.cs │ │ │ ├── DatabaseHealthCheckOperation.cs │ │ │ ├── DatabaseStatistics.cs │ │ │ ├── DeleteByQueryOperation.cs │ │ │ ├── DetailedDatabaseStatistics.cs │ │ │ ├── ETL │ │ │ │ ├── AddEtlOperation.cs │ │ │ │ ├── Elasticsearch │ │ │ │ │ ├── ElasticSearchEtlConfiguration.cs │ │ │ │ │ └── ElasticsearchConnectionString.cs │ │ │ │ ├── EtlConfiguration.cs │ │ │ │ ├── EtlConfigurationCompareDifferences.cs │ │ │ │ ├── EtlProcessState.cs │ │ │ │ ├── EtlType.cs │ │ │ │ ├── OLAP │ │ │ │ │ ├── OlapConnectionString.cs │ │ │ │ │ ├── OlapEtlConfiguration.cs │ │ │ │ │ └── OlapFileFormat.cs │ │ │ │ ├── Queue │ │ │ │ │ ├── AzureQueueStorageConnectionSettings.cs │ │ │ │ │ ├── KafkaConnectionSettings.cs │ │ │ │ │ ├── QueueBrokerType.cs │ │ │ │ │ ├── QueueConnectionString.cs │ │ │ │ │ ├── QueueEtlConfiguration.cs │ │ │ │ │ └── RabbitMqConnectionSettings.cs │ │ │ │ ├── RavenConnectionString.cs │ │ │ │ ├── RavenEtlConfiguration.cs │ │ │ │ ├── ResetEtlOperation.cs │ │ │ │ ├── SQL │ │ │ │ │ ├── SqlConnectionString.cs │ │ │ │ │ ├── SqlConnectionStringParser.cs │ │ │ │ │ ├── SqlEtlConfiguration.cs │ │ │ │ │ ├── SqlProvider.cs │ │ │ │ │ └── SqlProviderParser.cs │ │ │ │ ├── Transformation.cs │ │ │ │ └── UpdateEtlOperation.cs │ │ │ ├── EssentialDatabaseStatistics.cs │ │ │ ├── EssentialIndexInformation.cs │ │ │ ├── Expiration │ │ │ │ ├── ConfigureExpirationOperation.cs │ │ │ │ ├── ConfigureExpirationOperationResult.cs │ │ │ │ └── ExpirationConfiguration.cs │ │ │ ├── GetCollectionStatisticsOperation.cs │ │ │ ├── GetDetailedCollectionStatisticsOperation.cs │ │ │ ├── GetDetailedStatisticsOperation.cs │ │ │ ├── GetEssentialStatisticsOperation.cs │ │ │ ├── GetOperationStateOperation.cs │ │ │ ├── GetStatisticsOperation.cs │ │ │ ├── IMaintenanceOperation.cs │ │ │ ├── IOperation.cs │ │ │ ├── IOperationProgress.cs │ │ │ ├── Identities │ │ │ │ ├── GetIdentitiesOperation.cs │ │ │ │ ├── NextIdentityForOperation.cs │ │ │ │ └── SeedIdentityForOperation.cs │ │ │ ├── IndexInformation.cs │ │ │ ├── Indexes │ │ │ │ ├── DeleteIndexErrorsOperation.cs │ │ │ │ ├── DeleteIndexOperation.cs │ │ │ │ ├── DisableIndexOperation.cs │ │ │ │ ├── EnableIndexOperation.cs │ │ │ │ ├── GetIndexErrorsOperation.cs │ │ │ │ ├── GetIndexNamesOperation.cs │ │ │ │ ├── GetIndexOperation.cs │ │ │ │ ├── GetIndexPerformanceStatisticsOperation.cs │ │ │ │ ├── GetIndexStatisticsOperation.cs │ │ │ │ ├── GetIndexesOperation.cs │ │ │ │ ├── GetIndexesStatisticsOperation.cs │ │ │ │ ├── GetIndexingStatusOperation.cs │ │ │ │ ├── GetTermsOperation.cs │ │ │ │ ├── IndexHasChangedOperation.cs │ │ │ │ ├── PutIndexesOperation.cs │ │ │ │ ├── ResetIndexOperation.cs │ │ │ │ ├── SetIndexesLockOperation.cs │ │ │ │ ├── SetIndexesPriorityOperation.cs │ │ │ │ ├── StartIndexOperation.cs │ │ │ │ ├── StartIndexingOperation.cs │ │ │ │ ├── StopIndexOperation.cs │ │ │ │ └── StopIndexingOperation.cs │ │ │ ├── Integrations │ │ │ │ └── PostgreSQL │ │ │ │ │ ├── ConfigurePostgreSqlOperation.cs │ │ │ │ │ └── ConfigurePostgreSqlOperationResult.cs │ │ │ ├── JsonPatchOperation.cs │ │ │ ├── MaintenanceOperationExecutor.cs │ │ │ ├── OngoingTasks │ │ │ │ ├── DeleteOngoingTaskOperation.cs │ │ │ │ ├── GetOngoingTaskInfoOperation.cs │ │ │ │ ├── GetPullReplicationHubTasksInfoOperation.cs │ │ │ │ ├── GetTaskInfoResult.cs │ │ │ │ └── ToggleOngoingTaskStateOperation.cs │ │ │ ├── Operation.cs │ │ │ ├── OperationExceptionResult.cs │ │ │ ├── OperationExecutor.Operations.cs │ │ │ ├── OperationExecutor.Patching.cs │ │ │ ├── OperationExecutor.cs │ │ │ ├── OperationIdResult.cs │ │ │ ├── OperationMultipleExceptionsResult.cs │ │ │ ├── OperationState.cs │ │ │ ├── OperationStatusChange.cs │ │ │ ├── OperationStatusFetchMode.cs │ │ │ ├── PatchByQueryOperation.cs │ │ │ ├── PatchOperation.cs │ │ │ ├── PatchRequest.cs │ │ │ ├── PatchResult.cs │ │ │ ├── QueueSink │ │ │ │ ├── AddQueueSinkOperation.cs │ │ │ │ ├── QueueSinkConfiguration.cs │ │ │ │ ├── QueueSinkConfigurationCompareDifferences.cs │ │ │ │ ├── QueueSinkProcessState.cs │ │ │ │ ├── QueueSinkScript.cs │ │ │ │ └── UpdateQueueSinkOperation.cs │ │ │ ├── Refresh │ │ │ │ ├── ConfigureRefreshOperation.cs │ │ │ │ ├── ConfigureRefreshOperationResult.cs │ │ │ │ └── RefreshConfiguration.cs │ │ │ ├── Replication │ │ │ │ ├── DetailedReplicationHubAccess.cs │ │ │ │ ├── ExternalReplication.cs │ │ │ │ ├── ExternalReplicationBase.cs │ │ │ │ ├── GetReplicationHubAccessOperation.cs │ │ │ │ ├── GetReplicationPerformanceStatisticsOperation.cs │ │ │ │ ├── IExternalReplication.cs │ │ │ │ ├── InternalReplication.cs │ │ │ │ ├── PullReplicationAsHub.cs │ │ │ │ ├── PullReplicationAsSink.cs │ │ │ │ ├── PullReplicationDefinition.cs │ │ │ │ ├── PullReplicationMode.cs │ │ │ │ ├── PullReplicatonDefinitionAndCurrentConnections.cs │ │ │ │ ├── PutPullReplicationAsHubOperation.cs │ │ │ │ ├── RegisterReplicationHubAccessOperation.cs │ │ │ │ ├── ReplicationHubAccess.cs │ │ │ │ ├── ReplicationHubAccessResult.cs │ │ │ │ ├── UnregisterReplicationHubAccessOperation.cs │ │ │ │ ├── UpdateExternalReplicationOperation.cs │ │ │ │ └── UpdatePullReplicationAsSinkOperation.cs │ │ │ ├── ResultsResponse.cs │ │ │ ├── Revisions │ │ │ │ ├── AdoptOrphanedRevisionsOperation.cs │ │ │ │ ├── ConfigureRevisionsOperation.cs │ │ │ │ ├── DeleteRevisionsOperation.cs │ │ │ │ ├── EnforceRevisionsConfigurationOperation.cs │ │ │ │ ├── GetRevisionsOperation.cs │ │ │ │ ├── ReveisionsOperationParameters.cs │ │ │ │ ├── RevertResult.cs │ │ │ │ ├── RevertRevisionsByIdOperation.cs │ │ │ │ ├── RevisionIncludeResult.cs │ │ │ │ ├── RevisionsCollectionConfiguration.cs │ │ │ │ ├── RevisionsConfiguration.cs │ │ │ │ └── RevisionsResult.cs │ │ │ ├── Sorters │ │ │ │ ├── DeleteSorterOperation.cs │ │ │ │ └── PutSortersOperation.cs │ │ │ ├── TimeSeries │ │ │ │ ├── ConfigureTimeSeriesOperation.cs │ │ │ │ ├── ConfigureTimeSeriesPolicyOperation.cs │ │ │ │ ├── ConfigureTimeSeriesValueNamesOperation.cs │ │ │ │ ├── GetMultipleTimeSeriesOperation.cs │ │ │ │ ├── GetMultipleTimeSeriesRangesCommand.cs │ │ │ │ ├── GetTimeSeriesOperation.cs │ │ │ │ ├── GetTimeSeriesStatisticsOperation.cs │ │ │ │ ├── TimeSeriesBatchOperation.cs │ │ │ │ ├── TimeSeriesCollectionConfiguration.cs │ │ │ │ ├── TimeSeriesConfiguration.cs │ │ │ │ ├── TimeSeriesDetails.cs │ │ │ │ ├── TimeSeriesOperation.cs │ │ │ │ ├── TimeSeriesRange.cs │ │ │ │ ├── TimeSeriesRangeResult.cs │ │ │ │ └── TimeSeriesStatistics.cs │ │ │ └── TransactionsRecording │ │ │ │ ├── ReplayTransactionsRecordingOperation.cs │ │ │ │ ├── ReplayTxOperationResult.cs │ │ │ │ ├── StartTransactionsRecordingOperation.cs │ │ │ │ └── StopTransactionsRecordingOperation.cs │ │ ├── Queries │ │ │ ├── Explanation │ │ │ │ ├── ExplanationOptions.cs │ │ │ │ └── Explanations.cs │ │ │ ├── Facets │ │ │ │ ├── AggregationDocumentQuery.cs │ │ │ │ ├── AggregationQuery.cs │ │ │ │ ├── AggregationRawDocumentQuery.cs │ │ │ │ ├── AsyncAggregationDocumentQuery.cs │ │ │ │ ├── AsyncAggregationRawDocumentQuery.cs │ │ │ │ ├── Facet.cs │ │ │ │ ├── FacetAggregation.cs │ │ │ │ ├── FacetAggregationField.cs │ │ │ │ ├── FacetBase.cs │ │ │ │ ├── FacetFactory.cs │ │ │ │ ├── FacetOptions.cs │ │ │ │ ├── FacetResult.cs │ │ │ │ ├── FacetSetup.cs │ │ │ │ ├── FacetTermSortMode.cs │ │ │ │ ├── FacetValue.cs │ │ │ │ ├── IAggregationDocumentQuery.cs │ │ │ │ ├── IAggregationQuery.cs │ │ │ │ ├── IAsyncAggregationDocumentQuery.cs │ │ │ │ └── RangeFacet.cs │ │ │ ├── FilterFactory.cs │ │ │ ├── GroupByMethod.cs │ │ │ ├── HashCalculator.cs │ │ │ ├── Highlighting │ │ │ │ ├── HighlightingOptions.cs │ │ │ │ ├── Highlightings.cs │ │ │ │ ├── LinqQueryHighlightings.cs │ │ │ │ └── QueryHighlightings.cs │ │ │ ├── IndexQuery.cs │ │ │ ├── MoreLikeThis │ │ │ │ ├── MoreLikeThisBase.cs │ │ │ │ ├── MoreLikeThisFactory.cs │ │ │ │ ├── MoreLikeThisOptions.cs │ │ │ │ ├── MoreLikeThisScope.cs │ │ │ │ └── MoreLikeThisStopWords.cs │ │ │ ├── ProjectionBehavior.cs │ │ │ ├── QueryData.cs │ │ │ ├── QueryFieldUtil.cs │ │ │ ├── QueryOperationOptions.cs │ │ │ ├── QueryOperator.cs │ │ │ ├── QueryResult.cs │ │ │ ├── QueryResultBase.cs │ │ │ ├── RavenQuery.cs │ │ │ ├── SearchOperator.cs │ │ │ ├── Sorting │ │ │ │ └── SorterDefinition.cs │ │ │ ├── Spatial │ │ │ │ ├── DynamicSpatialField.cs │ │ │ │ ├── DynamicSpatialFieldFactory.cs │ │ │ │ ├── SpatialCriteria.cs │ │ │ │ ├── SpatialCriteriaFactory.cs │ │ │ │ └── WktSanitizer.cs │ │ │ ├── Suggestions │ │ │ │ ├── AsyncSuggestionDocumentQuery.cs │ │ │ │ ├── IAsyncSuggestionDocumentQuery.cs │ │ │ │ ├── ISuggestionDocumentQuery.cs │ │ │ │ ├── ISuggestionQuery.cs │ │ │ │ ├── StringDistanceTypes.cs │ │ │ │ ├── Suggestion.cs │ │ │ │ ├── SuggestionDocumentQuery.cs │ │ │ │ ├── SuggestionFactory.cs │ │ │ │ ├── SuggestionOptions.cs │ │ │ │ ├── SuggestionQuery.cs │ │ │ │ ├── SuggestionResult.cs │ │ │ │ └── SuggestionSortMode.cs │ │ │ ├── TermsQueryResult.cs │ │ │ ├── TimeSeries │ │ │ │ ├── TimeSeriesAggregation.cs │ │ │ │ ├── TimeSeriesAggregationOptions.cs │ │ │ │ ├── TimeSeriesQueryBuilder.cs │ │ │ │ ├── TimeSeriesQueryVisitor.cs │ │ │ │ ├── TimeSeriesQueryable.cs │ │ │ │ └── TimeSeriesWhereClauseVisitor.cs │ │ │ └── Timings │ │ │ │ ├── QueryInspectionNode.cs │ │ │ │ └── QueryTimings.cs │ │ ├── Replication │ │ │ ├── IncomingReplicationPerformanceStats.cs │ │ │ ├── Messages │ │ │ │ ├── ReplicationLatestEtagRequest.cs │ │ │ │ └── ReplicationMessageHeader.cs │ │ │ ├── OutgoingReplicationPerformanceStats.cs │ │ │ ├── ReplicationClientConfiguration.cs │ │ │ ├── ReplicationError.cs │ │ │ ├── ReplicationNode.cs │ │ │ ├── ReplicationPerformance.cs │ │ │ ├── ReplicationPerformanceOperation.cs │ │ │ └── StraightforwardConflictResolution.cs │ │ ├── SearchOptions.cs │ │ ├── Session │ │ │ ├── AbstractDocumentQuery.Customize.cs │ │ │ ├── AbstractDocumentQuery.Explanations.cs │ │ │ ├── AbstractDocumentQuery.Facets.cs │ │ │ ├── AbstractDocumentQuery.Highlightings.cs │ │ │ ├── AbstractDocumentQuery.Includes.cs │ │ │ ├── AbstractDocumentQuery.Sharding.cs │ │ │ ├── AbstractDocumentQuery.Spatial.cs │ │ │ ├── AbstractDocumentQuery.Suggestions.cs │ │ │ ├── AbstractDocumentQuery.Timings.cs │ │ │ ├── AbstractDocumentQuery.cs │ │ │ ├── AdvancedSessionExtensionBase.cs │ │ │ ├── AsyncDocumentQuery.Facets.cs │ │ │ ├── AsyncDocumentQuery.Filter.cs │ │ │ ├── AsyncDocumentQuery.Highlightings.cs │ │ │ ├── AsyncDocumentQuery.MoreLikeThis.cs │ │ │ ├── AsyncDocumentQuery.Sharding.cs │ │ │ ├── AsyncDocumentQuery.Spatial.cs │ │ │ ├── AsyncDocumentQuery.Suggestions.cs │ │ │ ├── AsyncDocumentQuery.cs │ │ │ ├── AsyncDocumentSession.ConditionalLoad.cs │ │ │ ├── AsyncDocumentSession.CountersFor.cs │ │ │ ├── AsyncDocumentSession.Includes.cs │ │ │ ├── AsyncDocumentSession.Lazy.cs │ │ │ ├── AsyncDocumentSession.Load.cs │ │ │ ├── AsyncDocumentSession.Query.cs │ │ │ ├── AsyncDocumentSession.RawQuery.cs │ │ │ ├── AsyncDocumentSession.Stream.cs │ │ │ ├── AsyncDocumentSession.TimeSeriesFor.cs │ │ │ ├── AsyncDocumentSession.TimeSeriesStream.cs │ │ │ ├── AsyncDocumentSession.cs │ │ │ ├── AsyncSessionDocumentCounters.cs │ │ │ ├── AsyncSessionDocumentTimeSeries.cs │ │ │ ├── ClusterTransactionSession.cs │ │ │ ├── CmpXchg.cs │ │ │ ├── ConcurrencyCheckMode.cs │ │ │ ├── DocumentInfo.cs │ │ │ ├── DocumentQuery.Facets.cs │ │ │ ├── DocumentQuery.Filter.cs │ │ │ ├── DocumentQuery.Highlightings.cs │ │ │ ├── DocumentQuery.MoreLikeThis.cs │ │ │ ├── DocumentQuery.Sharding.cs │ │ │ ├── DocumentQuery.Spatial.cs │ │ │ ├── DocumentQuery.Suggestions.cs │ │ │ ├── DocumentQuery.cs │ │ │ ├── DocumentQueryHelper.cs │ │ │ ├── DocumentSession.ConditionalLoad.cs │ │ │ ├── DocumentSession.CountersFor.cs │ │ │ ├── DocumentSession.Includes.cs │ │ │ ├── DocumentSession.Lazy.cs │ │ │ ├── DocumentSession.Load.cs │ │ │ ├── DocumentSession.Query.cs │ │ │ ├── DocumentSession.RawQuery.cs │ │ │ ├── DocumentSession.Stream.cs │ │ │ ├── DocumentSession.TimeSeriesFor.cs │ │ │ ├── DocumentSession.TimeSeriesStream.cs │ │ │ ├── DocumentSession.cs │ │ │ ├── DocumentSessionAttachments.cs │ │ │ ├── DocumentSessionAttachmentsAsync.cs │ │ │ ├── DocumentSessionAttachmentsBase.cs │ │ │ ├── DocumentSessionRevisions.cs │ │ │ ├── DocumentSessionRevisionsAsync.cs │ │ │ ├── DocumentsById.cs │ │ │ ├── DocumentsChanges.cs │ │ │ ├── Events.cs │ │ │ ├── GroupByDocumentQuery.cs │ │ │ ├── IAbstractDocumentQuery.cs │ │ │ ├── IAbstractDocumentQueryImpl.cs │ │ │ ├── IAdvancedDocumentSessionOperations.cs │ │ │ ├── IAdvancedSessionOperations.ConditionalLoad.cs │ │ │ ├── IAdvancedSessionOperations.Load.cs │ │ │ ├── IAdvancedSessionOperations.Patch.cs │ │ │ ├── IAdvancedSessionOperations.Query.cs │ │ │ ├── IAdvancedSessionOperations.Stream.cs │ │ │ ├── IAdvancedSessionOperations.cs │ │ │ ├── IAsyncAdvancedSessionOperations.ConditionalLoad.cs │ │ │ ├── IAsyncAdvancedSessionOperations.Load.cs │ │ │ ├── IAsyncAdvancedSessionOperations.Patch.cs │ │ │ ├── IAsyncAdvancedSessionOperations.Query.cs │ │ │ ├── IAsyncAdvancedSessionOperations.Stream.cs │ │ │ ├── IAsyncAdvancedSessionOperations.cs │ │ │ ├── IAsyncDocumentQuery.cs │ │ │ ├── IAsyncDocumentSession.CountersFor.cs │ │ │ ├── IAsyncDocumentSession.Include.cs │ │ │ ├── IAsyncDocumentSession.Load.cs │ │ │ ├── IAsyncDocumentSession.Query.cs │ │ │ ├── IAsyncDocumentSession.TimeSeriesFor.cs │ │ │ ├── IAsyncDocumentSession.cs │ │ │ ├── IAsyncDocumentSessionImpl.cs │ │ │ ├── IAsyncSessionDocumentCounters.cs │ │ │ ├── IAsyncSessionDocumentTimeSeries.cs │ │ │ ├── IAttachmentsSessionOperations.cs │ │ │ ├── IAttachmentsSessionOperationsAsync.cs │ │ │ ├── IAttachmentsSessionOperationsBase.cs │ │ │ ├── IDocumentQuery.cs │ │ │ ├── IDocumentQueryBase.cs │ │ │ ├── IDocumentQueryCustomization.cs │ │ │ ├── IDocumentSession.CountersFor.cs │ │ │ ├── IDocumentSession.Include.cs │ │ │ ├── IDocumentSession.Load.cs │ │ │ ├── IDocumentSession.Query.cs │ │ │ ├── IDocumentSession.TimeSeriesFor.cs │ │ │ ├── IDocumentSession.cs │ │ │ ├── IDocumentSessionImpl.cs │ │ │ ├── IGroupByDocumentQuery.cs │ │ │ ├── IMetadataDictionary.cs │ │ │ ├── IPagingDocumentQueryBase.cs │ │ │ ├── IQueryBase.cs │ │ │ ├── IRavenQueryInspector.cs │ │ │ ├── IRevisionsSessionOperations.cs │ │ │ ├── IRevisionsSessionOperationsAsync.cs │ │ │ ├── ISessionDocumentCounters.cs │ │ │ ├── ISessionDocumentCountersBase.cs │ │ │ ├── ISessionDocumentTimeSeries.cs │ │ │ ├── ISessionDocumentTimeSeriesBase.cs │ │ │ ├── InMemoryDocumentSessionOperations.Patch.cs │ │ │ ├── InMemoryDocumentSessionOperations.cs │ │ │ ├── IncludesUtil.cs │ │ │ ├── IndexMetadataCache.cs │ │ │ ├── Loaders │ │ │ │ ├── AsyncMultiLoaderWithInclude.cs │ │ │ │ ├── IAsyncLoaderWithInclude.cs │ │ │ │ ├── ILazyLoaderWithInclude.cs │ │ │ │ ├── ILoaderWithInclude.cs │ │ │ │ ├── IncludeBuilder.cs │ │ │ │ ├── LazyMultiLoaderWithInclude.cs │ │ │ │ └── MultiLoaderWithInclude.cs │ │ │ ├── MethodCall.cs │ │ │ ├── Operations │ │ │ │ ├── BatchOperation.cs │ │ │ │ ├── GetRevisionOperation.cs │ │ │ │ ├── Lazy │ │ │ │ │ ├── ILazyOperation.cs │ │ │ │ │ ├── ILazySessionOperations.cs │ │ │ │ │ ├── IndexQueryContent.cs │ │ │ │ │ ├── LazyAggregationQueryOperation.cs │ │ │ │ │ ├── LazyConditionalLoadOperation.cs │ │ │ │ │ ├── LazyGetCompareExchangeValueOperation.cs │ │ │ │ │ ├── LazyGetCompareExchangeValuesOperation.cs │ │ │ │ │ ├── LazyLoadOperation.cs │ │ │ │ │ ├── LazyQueryOperation.cs │ │ │ │ │ ├── LazyRevisionOperation.cs │ │ │ │ │ ├── LazyStartsWithOperation.cs │ │ │ │ │ └── LazySuggestionQueryOperation.cs │ │ │ │ ├── LoadOperation.cs │ │ │ │ ├── LoadStartingWithOperation.cs │ │ │ │ ├── MultiGetOperation.cs │ │ │ │ ├── QueryOperation.cs │ │ │ │ ├── SessionOperationExecutor.cs │ │ │ │ └── StreamOperation.cs │ │ │ ├── Ordering.cs │ │ │ ├── QueryStatistics.cs │ │ │ ├── Querying │ │ │ │ └── Sharding │ │ │ │ │ ├── IQueryShardedContextBuilder.cs │ │ │ │ │ └── QueryShardedContextBuilder.cs │ │ │ ├── ResponseTimeInformation.cs │ │ │ ├── SessionCountersBase.cs │ │ │ ├── SessionDocumentCounters.cs │ │ │ ├── SessionDocumentTimeSeries.cs │ │ │ ├── SessionInfo.cs │ │ │ ├── SessionOptions.cs │ │ │ ├── SessionTimeSeriesBase.cs │ │ │ ├── StreamQueryStatistics.cs │ │ │ ├── TimeSeries │ │ │ │ └── TimeSeriesEntry.cs │ │ │ ├── Tokens │ │ │ │ ├── CloseSubclauseToken.cs │ │ │ │ ├── CompareExchangeValueIncludesToken.cs │ │ │ │ ├── CounterIncludesToken.cs │ │ │ │ ├── DeclareToken.cs │ │ │ │ ├── DistinctToken.cs │ │ │ │ ├── ExplanationToken.cs │ │ │ │ ├── FacetToken.cs │ │ │ │ ├── FieldsToFetchToken.cs │ │ │ │ ├── FromToken.cs │ │ │ │ ├── GroupByCountToken.cs │ │ │ │ ├── GroupByKeyToken.cs │ │ │ │ ├── GroupBySumToken.cs │ │ │ │ ├── GroupByToken.cs │ │ │ │ ├── HighlightingToken.cs │ │ │ │ ├── IntersectMarkerToken.cs │ │ │ │ ├── LoadToken.cs │ │ │ │ ├── MoreLikeThisToken.cs │ │ │ │ ├── NegateToken.cs │ │ │ │ ├── OpenSubclauseToken.cs │ │ │ │ ├── OrderByToken.cs │ │ │ │ ├── QueryOperatorToken.cs │ │ │ │ ├── QueryToken.cs │ │ │ │ ├── RevisionIncludesToken.cs │ │ │ │ ├── ShapeToken.cs │ │ │ │ ├── SuggestToken.cs │ │ │ │ ├── TimeSeriesIncludesToken.cs │ │ │ │ ├── TimingsToken.cs │ │ │ │ ├── TrueToken.cs │ │ │ │ ├── WhereOperator.cs │ │ │ │ └── WhereToken.cs │ │ │ └── WhereEqualsParams.cs │ │ ├── Smuggler │ │ │ ├── BackupUtils.cs │ │ │ ├── DatabaseItemType.cs │ │ │ ├── DatabaseSmuggler.cs │ │ │ ├── DatabaseSmugglerExportOptions.cs │ │ │ ├── DatabaseSmugglerImportOptions.cs │ │ │ ├── DatabaseSmugglerOptions.cs │ │ │ ├── OfflineMigrationProgress.cs │ │ │ ├── OfflineMigrationResult.cs │ │ │ ├── PeriodicBackupFileExtensionComparer.cs │ │ │ ├── ShardedSmugglerProgress.cs │ │ │ ├── ShardedSmugglerResult.cs │ │ │ ├── SmugglerProgressBase.cs │ │ │ └── SmugglerResult.cs │ │ ├── Subscriptions │ │ │ ├── AbstractSubscriptionWorker.cs │ │ │ ├── CreateSubscriptionResult.cs │ │ │ ├── DocumentSubscriptions.cs │ │ │ ├── GetSubscriptionsResult.cs │ │ │ ├── SubscriptionBatch.cs │ │ │ ├── SubscriptionBatchBase.cs │ │ │ ├── SubscriptionCriteria.cs │ │ │ ├── SubscriptionMode.cs │ │ │ ├── SubscriptionOpeningStrategy.cs │ │ │ ├── SubscriptionShardingState.cs │ │ │ ├── SubscriptionState.cs │ │ │ ├── SubscriptionWorker.cs │ │ │ └── SubscriptionWorkerOptions.cs │ │ └── TimeSeries │ │ │ └── TimeSeriesOperations.cs │ ├── Exceptions │ │ ├── AllTopologyNodesDownException.cs │ │ ├── BadRequestException.cs │ │ ├── BadResponseException.cs │ │ ├── Changes │ │ │ └── ChangeProcessingException.cs │ │ ├── ClientVersionMismatchException.cs │ │ ├── Cluster │ │ │ ├── CommandExecutionException.cs │ │ │ ├── NoLeaderException.cs │ │ │ └── NodeIsPassiveException.cs │ │ ├── ClusterTransactionConcurrencyException.cs │ │ ├── Commercial │ │ │ ├── LicenseActivationException.cs │ │ │ ├── LicenseLimitException.cs │ │ │ ├── LimitType.cs │ │ │ └── PortInUseException.cs │ │ ├── CompareExchangeInvalidKeyException.cs │ │ ├── CompareExchangeKeyTooBigException.cs │ │ ├── Compilation │ │ │ └── CompilationException.cs │ │ ├── ConcurrencyException.cs │ │ ├── ConflictException.cs │ │ ├── Corax │ │ │ ├── NotImplementedInCoraxException.cs │ │ │ └── NotSupportedInCoraxException.cs │ │ ├── Database │ │ │ ├── BackupAlreadyRunningException.cs │ │ │ ├── DatabaseConcurrentLoadTimeoutException.cs │ │ │ ├── DatabaseDisabledException.cs │ │ │ ├── DatabaseDoesNotExistException.cs │ │ │ ├── DatabaseIdleException.cs │ │ │ ├── DatabaseLoadFailureException.cs │ │ │ ├── DatabaseLoadTimeoutException.cs │ │ │ ├── DatabaseNotRelevantException.cs │ │ │ ├── DatabaseRestoringException.cs │ │ │ └── DatabaseSchemaErrorException.cs │ │ ├── Documents │ │ │ ├── Analyzers │ │ │ │ └── AnalyzerDoesNotExistException.cs │ │ │ ├── Attachments │ │ │ │ ├── AttachmentDoesNotExistException.cs │ │ │ │ └── InvalidAttachmentRangeException.cs │ │ │ ├── BulkInsert │ │ │ │ ├── BulkInsertAbortedException.cs │ │ │ │ ├── BulkInsertClientException.cs │ │ │ │ ├── BulkInsertInvalidOperationException.cs │ │ │ │ └── BulkInsertProtocolViolationException.cs │ │ │ ├── Compilation │ │ │ │ ├── AnalyzerCompilationException.cs │ │ │ │ ├── IndexCompilationException.cs │ │ │ │ └── SorterCompilationException.cs │ │ │ ├── Counters │ │ │ │ └── CounterOverflowException.cs │ │ │ ├── DocumentCollectionMismatchException.cs │ │ │ ├── DocumentConflictException.cs │ │ │ ├── DocumentDoesNotExistException.cs │ │ │ ├── Indexes │ │ │ │ ├── IndexAlreadyExistException.cs │ │ │ │ ├── IndexCompactionInProgressException.cs │ │ │ │ ├── IndexCreationException.cs │ │ │ │ ├── IndexDeletionException.cs │ │ │ │ ├── IndexDoesNotExistException.cs │ │ │ │ ├── IndexInvalidException.cs │ │ │ │ └── PendingRollingIndexException.cs │ │ │ ├── Patching │ │ │ │ ├── JavaScriptException.cs │ │ │ │ └── JavaScriptParseException.cs │ │ │ ├── Revisions │ │ │ │ └── RevisionsDisabledException.cs │ │ │ ├── Session │ │ │ │ └── NonUniqueObjectException.cs │ │ │ ├── Sorters │ │ │ │ └── SorterDoesNotExistException.cs │ │ │ └── Subscriptions │ │ │ │ ├── DocumentUnderActiveMigrationException.cs │ │ │ │ ├── SubscriberErrorException.cs │ │ │ │ ├── SubscriptionChangeVectorUpdateConcurrencyException.cs │ │ │ │ ├── SubscriptionClosedException.cs │ │ │ │ ├── SubscriptionConnectionDownException.cs │ │ │ │ ├── SubscriptionCreationException.cs │ │ │ │ ├── SubscriptionDoesNotBelongToNodeException.cs │ │ │ │ ├── SubscriptionDoesNotExistException.cs │ │ │ │ ├── SubscriptionException.cs │ │ │ │ ├── SubscriptionInUseException.cs │ │ │ │ ├── SubscriptionInvalidStateException.cs │ │ │ │ ├── SubscriptionMessageTypeException.cs │ │ │ │ └── SubscriptionNameException.cs │ │ ├── ExceptionDispatcher.cs │ │ ├── InvalidNetworkTopologyException.cs │ │ ├── InvalidQueryException.cs │ │ ├── LegacyReplicationViolationException.cs │ │ ├── RavenException.cs │ │ ├── RavenTimeoutException.cs │ │ ├── ReplicationHubNotFoundException.cs │ │ ├── RequestedNodeUnavailableException.cs │ │ ├── Routing │ │ │ └── RouteNotFoundException.cs │ │ ├── Security │ │ │ ├── AuthenticationException.cs │ │ │ ├── AuthorizationException.cs │ │ │ ├── CertificateNameMismatchException.cs │ │ │ ├── InsufficientTransportLayerProtectionException.cs │ │ │ └── SecurityException.cs │ │ ├── Server │ │ │ └── ServerLoadFailureException.cs │ │ ├── Sharding │ │ │ ├── ExecutionForShardException.cs │ │ │ ├── NotSupportedInShardingException.cs │ │ │ ├── ShardMismatchException.cs │ │ │ ├── ShardedBatchBehaviorViolationException.cs │ │ │ └── ShardedPatchBehaviorViolationException.cs │ │ ├── UnsuccessfulFileAccessException.cs │ │ └── UnsuccessfulRequestException.cs │ ├── Extensions │ │ ├── BlittableJsonExtensions.cs │ │ ├── BlittableJsonTextWriterExtensions.cs │ │ ├── CharExtensions.cs │ │ ├── DictionaryExtensions.cs │ │ ├── DocumentStoreExtensions.cs │ │ ├── EnumerableExtension.cs │ │ ├── ExceptionExtensions.cs │ │ ├── ExpressionExtensions.cs │ │ ├── HttpExtensions.cs │ │ ├── JsonSerializationExtensions.cs │ │ ├── ListExtensions.cs │ │ ├── MemberInfoExtensions.cs │ │ ├── PropertyNameConventionJavaScriptCompilationExtension.cs │ │ ├── ReflectionExtensions.cs │ │ ├── Streams │ │ │ ├── BufferSharedPools.cs │ │ │ └── StreamExtensions.cs │ │ ├── StringExtensions.cs │ │ ├── TaskExtensions.cs │ │ └── WhoIsLocking.cs │ ├── Http │ │ ├── AggressiveCacheMode.cs │ │ ├── AggressiveCacheOptions.cs │ │ ├── AttachmentStreamContent.cs │ │ ├── Behaviors │ │ │ ├── AbstractCommandResponseBehavior.cs │ │ │ └── DefaultCommandResponseBehavior.cs │ │ ├── ClusterRequestExecutor.cs │ │ ├── ClusterTopology.cs │ │ ├── ClusterTopologyLocalCache.cs │ │ ├── ClusterTopologyResponse.cs │ │ ├── DatabaseTopologyLocalCache.cs │ │ ├── DefaultRavenHttpClientFactory.cs │ │ ├── HttpCache.cs │ │ ├── HttpClientCacheKey.cs │ │ ├── HttpCompressionAlgorithm.cs │ │ ├── IRavenHttpClientFactory.cs │ │ ├── LoadBalanceBehavior.cs │ │ ├── NodeSelector.cs │ │ ├── RavenCommand.cs │ │ ├── ReadBalanceBehavior.cs │ │ ├── RequestExecutor.cs │ │ ├── ServerNode.cs │ │ ├── Topology.cs │ │ └── TopologyHash.cs │ ├── Json │ │ ├── BlittableArrayResult.cs │ │ ├── BlittableExtensions.cs │ │ ├── BlittableJsonContent.cs │ │ ├── BlittableOperation.cs │ │ ├── BlittablePath.cs │ │ ├── ExpressionHelper.cs │ │ ├── MetadataAsDictionary.cs │ │ ├── Serialization │ │ │ ├── CreateDeserializerOptions.cs │ │ │ ├── CreateSerializerOptions.cs │ │ │ ├── IBlittableJsonConverter.cs │ │ │ ├── IJsonReader.cs │ │ │ ├── IJsonSerializer.cs │ │ │ ├── IJsonWriter.cs │ │ │ ├── ISerializationConventions.cs │ │ │ ├── JsonDeserializationClient.cs │ │ │ ├── NewtonsoftJson │ │ │ │ ├── DefaultRavenContractResolver.cs │ │ │ │ ├── DefaultRavenSerializationBinder.cs │ │ │ │ ├── Internal │ │ │ │ │ ├── BlittableJsonConverter.cs │ │ │ │ │ ├── BlittableJsonConverterBase.cs │ │ │ │ │ ├── BlittableJsonReader.cs │ │ │ │ │ ├── BlittableJsonWriter.cs │ │ │ │ │ ├── Converters │ │ │ │ │ │ ├── CachingJsonConverter.cs │ │ │ │ │ │ ├── DateOnlyConverter.cs │ │ │ │ │ │ ├── DateTools.cs │ │ │ │ │ │ ├── JsonDateTimeISO8601Converter.cs │ │ │ │ │ │ ├── JsonDictionaryDateTimeKeysConverter.cs │ │ │ │ │ │ ├── JsonEnumerableConverter.cs │ │ │ │ │ │ ├── JsonIMetadataDictionaryConverter.cs │ │ │ │ │ │ ├── JsonLinqEnumerableConverter.cs │ │ │ │ │ │ ├── JsonLuceneDateTimeConverter.cs │ │ │ │ │ │ ├── ParametersConverter.cs │ │ │ │ │ │ ├── SizeConverter.cs │ │ │ │ │ │ ├── StringDictionaryConverter.cs │ │ │ │ │ │ └── TimeOnlyConverter.cs │ │ │ │ │ ├── NewtonsoftJsonBlittableEntitySerializer.cs │ │ │ │ │ ├── NewtonsoftJsonJsonSerializer.cs │ │ │ │ │ └── SessionBlittableJsonConverter.cs │ │ │ │ └── NewtonsoftJsonSerializationConventions.cs │ │ │ └── TypeNameHandling.cs │ │ └── TypeConverter.cs │ ├── Parameters.cs │ ├── Properties │ │ ├── AssemblyInfo.Linux.cs │ │ ├── AssemblyInfo.Windows.cs │ │ └── VersionInfo.cs │ ├── Raven.Client.csproj │ ├── ServerWide │ │ ├── Commands │ │ │ ├── Cluster │ │ │ │ ├── AddClusterNodeCommand.cs │ │ │ │ ├── DemoteClusterNodeCommand.cs │ │ │ │ ├── PromoteClusterNodeCommand.cs │ │ │ │ └── RemoveClusterNodeCommand.cs │ │ │ ├── GetClusterTopologyCommand.cs │ │ │ ├── GetDatabaseTopologyCommand.cs │ │ │ ├── GetNodeInfoCommand.cs │ │ │ ├── GetRawStreamResultCommand.cs │ │ │ ├── GetTcpInfoCommand.cs │ │ │ ├── IsDatabaseLoadedCommand.cs │ │ │ ├── PutSecretKeyCommand.cs │ │ │ ├── TcpConnectionInfo.cs │ │ │ └── WaitForRaftIndexCommand.cs │ │ ├── CompactSettings.cs │ │ ├── ConflictSolver.cs │ │ ├── DatabaseRecord.cs │ │ ├── DatabaseTopology.cs │ │ ├── Helpers.cs │ │ ├── Operations │ │ │ ├── AddDatabaseNodeOperation.cs │ │ │ ├── Analyzers │ │ │ │ ├── DeleteServerWideAnalyzerOperation.cs │ │ │ │ └── PutServerWideAnalyzersOperation.cs │ │ │ ├── BuildNumber.cs │ │ │ ├── Certificates │ │ │ │ ├── CertificateDefinition.cs │ │ │ │ ├── ClientCertificateGenerationResult.cs │ │ │ │ ├── CreateClientCertificateOperation.cs │ │ │ │ ├── DeleteCertificateOperation.cs │ │ │ │ ├── EditClientCertificateOperation.cs │ │ │ │ ├── GetCertificateMetadataOperation.cs │ │ │ │ ├── GetCertificateOperation.cs │ │ │ │ ├── GetCertificatesMetadataOperation.cs │ │ │ │ ├── GetCertificatesOperation.cs │ │ │ │ ├── PutClientCertificateOperation.cs │ │ │ │ ├── ReplaceClusterCertificateOperation.cs │ │ │ │ └── SecurityClearanceAttribute.cs │ │ │ ├── CompactDatabaseOperation.cs │ │ │ ├── CompactionProgress.cs │ │ │ ├── CompactionResult.cs │ │ │ ├── Configuration │ │ │ │ ├── DatabaseSettings.cs │ │ │ │ ├── GetDatabaseSettingsOperation.cs │ │ │ │ ├── GetServerWideBackupConfigurationOperation.cs │ │ │ │ ├── GetServerWideBackupConfigurationsOperation.cs │ │ │ │ ├── GetServerWideClientConfigurationOperation.cs │ │ │ │ ├── PutDatabaseSettingsOperation.cs │ │ │ │ ├── PutServerWideBackupConfigurationOperation.cs │ │ │ │ ├── PutServerWideClientConfigurationOperation.cs │ │ │ │ ├── ServerWideBackupConfiguration.cs │ │ │ │ └── ServerWideStudioConfiguration.cs │ │ │ ├── ConfigureRevisionsForConflictsOperation.cs │ │ │ ├── ConfigureRevisionsForConflictsResult.cs │ │ │ ├── CreateDatabaseOperation.cs │ │ │ ├── DatabasePutResult.cs │ │ │ ├── DatabaseRecordBuilder.cs │ │ │ ├── DatabasesInfo.cs │ │ │ ├── DeleteDatabaseResult.cs │ │ │ ├── DeleteDatabasesOperation.cs │ │ │ ├── DisableDatabaseToggleResult.cs │ │ │ ├── DocumentsCompression │ │ │ │ ├── DocumentCompressionConfigurationResult.cs │ │ │ │ └── UpdateDocumentsCompressionConfigurationOperation.cs │ │ │ ├── GetBuildNumberOperation.cs │ │ │ ├── GetDatabaseNamesOperation.cs │ │ │ ├── GetDatabaseRecordOperation.cs │ │ │ ├── GetServerWideOperationStateOperation.cs │ │ │ ├── IServerOperation.cs │ │ │ ├── IndexOptimizeResult.cs │ │ │ ├── Integrations │ │ │ │ ├── IntegrationConfigurations.cs │ │ │ │ └── PostgreSQL │ │ │ │ │ ├── PostgreSqlAuthenticationConfiguration.cs │ │ │ │ │ ├── PostgreSqlConfiguration.cs │ │ │ │ │ └── PostgreSqlUser.cs │ │ │ ├── Logs │ │ │ │ ├── GetLogsConfigurationOperation.cs │ │ │ │ └── SetLogsConfigurationOperation.cs │ │ │ ├── Migration │ │ │ │ ├── OfflineMigrationConfiguration.cs │ │ │ │ └── OfflineMigrationOperation.cs │ │ │ ├── ModifyConflictSolverOperation.cs │ │ │ ├── ModifyDatabaseTopologyOperation.cs │ │ │ ├── ModifyDatabaseTopologyResult.cs │ │ │ ├── ModifySolverResult.cs │ │ │ ├── OngoingTasks │ │ │ │ ├── DeleteServerWideTaskOperation.cs │ │ │ │ ├── GetServerWideExternalReplicationOperation.cs │ │ │ │ ├── GetServerWideExternalReplicationsOperation.cs │ │ │ │ ├── IServerWideTask.cs │ │ │ │ ├── PutServerWideExternalReplicationOperation.cs │ │ │ │ ├── ServerWideExtensions.cs │ │ │ │ ├── ServerWideExternalReplication.cs │ │ │ │ ├── ServerWideTaskResponse.cs │ │ │ │ └── ToggleServerWideTaskStateOperation.cs │ │ │ ├── OsInfo.cs │ │ │ ├── PromoteDatabaseNodeOperation.cs │ │ │ ├── ReorderDatabaseMembersOperation.cs │ │ │ ├── RestoreBackupOperation.cs │ │ │ ├── RestoreProgress.cs │ │ │ ├── RestoreResult.cs │ │ │ ├── ServerOperationExecutor.cs │ │ │ ├── ServerWideOperation.cs │ │ │ ├── SetDatabaseDynamicDistributionOperation.cs │ │ │ ├── SetDatabasesLockOperation.cs │ │ │ ├── Sorters │ │ │ │ ├── DeleteServerWideSorterOperation.cs │ │ │ │ └── PutServerWideSortersOperation.cs │ │ │ ├── ToggleDatabasesStateOperation.cs │ │ │ ├── TrafficWatch │ │ │ │ ├── GetTrafficWatchConfigurationOperation.cs │ │ │ │ └── PutTrafficWatchConfigurationOperation.cs │ │ │ ├── UpdateDatabaseOperation.cs │ │ │ └── UpdateUnusedDatabasesOperation.cs │ │ ├── RachisEnum.cs │ │ ├── Sharding │ │ │ ├── AddDatabaseShardOperation.cs │ │ │ ├── AddNodeToOrchestratorTopologyOperation.cs │ │ │ ├── AddPrefixedShardingSettingOperation.cs │ │ │ ├── DeletePrefixedShardingSettingOperation.cs │ │ │ ├── MigrationStatus.cs │ │ │ ├── OrchestratorConfiguration.cs │ │ │ ├── PrefixedShardingCommand.cs │ │ │ ├── PrefixedShardingSetting.cs │ │ │ ├── RemoveNodeFromOrchestratorTopologyOperation.cs │ │ │ ├── ShardBucketMigration.cs │ │ │ ├── ShardBucketRange.cs │ │ │ ├── ShardingConfiguration.cs │ │ │ └── UpdatePrefixedShardingSettingOperation.cs │ │ └── Tcp │ │ │ ├── LicensedFeatures.cs │ │ │ ├── TcpConnectionHeader.cs │ │ │ ├── TcpConnectionHeaderResponse.cs │ │ │ └── TcpNegotiation.cs │ └── Util │ │ ├── AsyncHelpers.cs │ │ ├── CSharpClassName.cs │ │ ├── CertificateLoaderUtil.cs │ │ ├── ClientShardHelper.cs │ │ ├── ClusterWideTransactionHelper.cs │ │ ├── DisposableAction.cs │ │ ├── HttpClientHandlerHelper.cs │ │ ├── HttpMethods.cs │ │ ├── IDisposalNotification.cs │ │ ├── JavascriptConversionExtensions.cs │ │ ├── Metrics │ │ ├── AtomicLong.cs │ │ ├── EWMA.cs │ │ ├── TimeUnit.cs │ │ └── VolatileDouble.cs │ │ ├── ObjectReferenceEqualityComparer.cs │ │ ├── RaftIdGenerator.cs │ │ ├── RateLimiting │ │ └── RateGate.cs │ │ ├── ReflectionUtil.cs │ │ ├── ResourceNameValidator.cs │ │ ├── RunningOn.cs │ │ ├── Size.cs │ │ ├── StreamExposerContent.cs │ │ ├── StreamWithTimeout.cs │ │ ├── SystemTime.cs │ │ ├── TcpUtils.cs │ │ ├── WeakReferencingTimer.cs │ │ └── WebSocketStream.cs ├── Raven.Embedded │ ├── DatabaseOptions.cs │ ├── EmbeddedServer.cs │ ├── ProcessHelper.cs │ ├── Raven.Embedded.csproj │ ├── Raven.Embedded.nuspec.template │ ├── RavenDB.Embedded.targets │ ├── RavenServerRunner.cs │ ├── RuntimeFrameworkVersionMatcher.cs │ ├── ServerOptions.cs │ └── ServerProcessExitedEventArgs.cs ├── Raven.Pal │ ├── README.txt │ ├── Raven.Pal.vcxproj │ ├── Raven.Pal.vcxproj.filters │ ├── build-all-posix.sh │ ├── build-all-windows.bat │ ├── build-all.ps1 │ ├── build-libs │ │ ├── .gitignore │ │ ├── build-zstd-posix.sh │ │ ├── colors.sh │ │ ├── crossbuild.sh │ │ ├── libsodium.sh │ │ ├── zstd-build-deps.sh │ │ ├── zstd-build.Dockerfile │ │ └── zstd.sh │ ├── build-sodium.sh │ ├── build-zstd.ps1 │ ├── inc │ │ ├── internal_posix.h │ │ ├── internal_win.h │ │ ├── rvn.h │ │ └── status_codes.h │ ├── make.sh │ ├── pal.ver │ └── src │ │ ├── fileutils_all.c │ │ ├── posix │ │ ├── fileutils.c │ │ ├── geterrorstring.c │ │ ├── getsysteminformation.c │ │ ├── journal.c │ │ ├── linuxonly.c │ │ ├── maconly.c │ │ ├── mapping.c │ │ ├── sync.c │ │ ├── virtualmemory.c │ │ └── writefileheader.c │ │ ├── rvngetpalver.c │ │ └── win │ │ ├── fileutils.c │ │ ├── getcurrentthreadid.c │ │ ├── geterrorstring.c │ │ ├── getsysteminformation.c │ │ ├── journal.c │ │ ├── mapping.c │ │ ├── virtualmemory.c │ │ └── writefileheader.c ├── Raven.Server │ ├── Background │ │ └── BackgroundWorkBase.cs │ ├── Commercial │ │ ├── ApiHttpClient.cs │ │ ├── CompleteClusterConfigurationResult.cs │ │ ├── CreateSetupPackageParameters.cs │ │ ├── DetailsPerNode.cs │ │ ├── EmailValidator.cs │ │ ├── FeedbackSender.cs │ │ ├── GetSetupZipFileParameters.cs │ │ ├── LeaseLicenseInfo.cs │ │ ├── LeasedLicense.cs │ │ ├── LetsEncrypt │ │ │ ├── CompleteClusterConfigurationParameters.cs │ │ │ ├── LetsEncryptCertificateUtil.cs │ │ │ ├── LetsEncryptSimulationHelper.cs │ │ │ ├── LetsEncryptValidationHelper.cs │ │ │ ├── RavenDnsRecordHelper.cs │ │ │ ├── SettingsZipFileHelper.cs │ │ │ └── UpdateDnsRecordParameters.cs │ │ ├── LetsEncryptClient.cs │ │ ├── License.cs │ │ ├── LicenseAttribute.cs │ │ ├── LicenseExpiredException.cs │ │ ├── LicenseHelper.cs │ │ ├── LicenseLeaseResult.cs │ │ ├── LicenseLimits.cs │ │ ├── LicenseLimitsUsage.cs │ │ ├── LicenseManager.cs │ │ ├── LicenseRenewalResult.cs │ │ ├── LicenseStatus.cs │ │ ├── LicenseStorage.cs │ │ ├── LicenseSupportInfo.cs │ │ ├── LicenseType.cs │ │ ├── LicenseValidator.cs │ │ ├── NodeDetails.cs │ │ ├── NodeLicenseLimits.cs │ │ ├── OsInfoExtensions.cs │ │ ├── RSAPublicParameters.cs │ │ ├── RavenDB.public.json │ │ ├── SetupInfo.cs │ │ ├── SetupInfoBase.cs │ │ ├── SetupManager.cs │ │ ├── SetupMode.cs │ │ ├── SetupParameters.cs │ │ ├── SetupWizard │ │ │ ├── CompleteAuthorizationAndGetCertificateParameters.cs │ │ │ ├── LetsEncryptSetupUtils.cs │ │ │ ├── OwnCertificateSetupUtils.cs │ │ │ ├── SetupWizardUtils.cs │ │ │ └── UnsecuredSetupUtils.cs │ │ └── UserRegistrationInfo.cs │ ├── Config │ │ ├── Attributes │ │ │ ├── ConfigurationEntryAttribute.cs │ │ │ ├── MinValueAttribute.cs │ │ │ ├── SizeUnitAttribute.cs │ │ │ └── TimeUnitAttribute.cs │ │ ├── Categories │ │ │ ├── BackupConfiguration.cs │ │ │ ├── ClusterConfiguration.cs │ │ │ ├── ConfigurationCategory.cs │ │ │ ├── ConfigurationCategoryAttribute.cs │ │ │ ├── ConfigurationCategoryType.cs │ │ │ ├── CoreConfiguration.cs │ │ │ ├── DatabaseConfiguration.cs │ │ │ ├── DebugConfiguration.cs │ │ │ ├── EmbeddedConfiguration.cs │ │ │ ├── EtlConfiguration.cs │ │ │ ├── ExportImportConfiguration.cs │ │ │ ├── HttpConfiguration.cs │ │ │ ├── IndexingConfiguration.cs │ │ │ ├── IntegrationsConfiguration.cs │ │ │ ├── LicenseConfiguration.cs │ │ │ ├── LogsConfiguration.cs │ │ │ ├── MemoryConfiguration.cs │ │ │ ├── MigrationConfiguration.cs │ │ │ ├── MonitoringConfiguration.cs │ │ │ ├── NotificationsConfiguration.cs │ │ │ ├── PatchingConfiguration.cs │ │ │ ├── PerformanceHintsConfiguration.cs │ │ │ ├── QueryConfiguration.cs │ │ │ ├── QueueSinkConfiguration.cs │ │ │ ├── ReplicationConfiguration.cs │ │ │ ├── SecurityConfiguration.cs │ │ │ ├── ServerConfiguration.cs │ │ │ ├── ShardingConfiguration.cs │ │ │ ├── StorageConfiguration.cs │ │ │ ├── StudioConfiguration.cs │ │ │ ├── SubscriptionsConfiguration.cs │ │ │ ├── TombstoneConfiguration.cs │ │ │ ├── TrafficWatchConfiguration.cs │ │ │ ├── TransactionMergerConfiguration.cs │ │ │ └── UpdatesConfiguration.cs │ │ ├── ConfigurationEntryMetadata.cs │ │ ├── ConfigurationEntryValue.cs │ │ ├── ConfigurationEnumValueException.cs │ │ ├── JsonConfigFileModifier.cs │ │ ├── RavenConfiguration.cs │ │ ├── RavenConfigurationSection.cs │ │ ├── Settings │ │ │ ├── PathSetting.cs │ │ │ ├── TimeSetting.cs │ │ │ └── UriSetting.cs │ │ └── SettingsJsonModifier.cs │ ├── Dashboard │ │ ├── AbstractDashboardNotification.cs │ │ ├── Cluster │ │ │ ├── AbstractClusterDashboardNotification.cs │ │ │ ├── AbstractClusterDashboardNotificationSender.cs │ │ │ ├── ClusterDashboardNotificationType.cs │ │ │ ├── ClusterDashboardNotifications.cs │ │ │ ├── Notifications │ │ │ │ ├── ClusterDashboardPayloadType.cs │ │ │ │ ├── ClusterOverviewNotificationSender.cs │ │ │ │ ├── ClusterOverviewPayload.cs │ │ │ │ ├── CpuUsageNotificationSender.cs │ │ │ │ ├── CpuUsagePayload.cs │ │ │ │ ├── DatabaseIndexingSpeedPayload.cs │ │ │ │ ├── DatabaseOverviewNotificationSender.cs │ │ │ │ ├── DatabaseOverviewPayload.cs │ │ │ │ ├── DatabaseStorageUsagePayload.cs │ │ │ │ ├── DatabaseTrafficWatchPayload.cs │ │ │ │ ├── GcInfoNotificationSender.cs │ │ │ │ ├── GcInfoPayload.cs │ │ │ │ ├── IndexingSpeedNotificationSender.cs │ │ │ │ ├── IndexingSpeedPayload.cs │ │ │ │ ├── IoStatsNotificationSender.cs │ │ │ │ ├── IoStatsPayload.cs │ │ │ │ ├── MemoryUsageNotificationSender.cs │ │ │ │ ├── MemoryUsagePayload.cs │ │ │ │ ├── OngoingTasksNotificationSender.cs │ │ │ │ ├── OngoingTasksPayload.cs │ │ │ │ ├── ServerTimePayload.cs │ │ │ │ ├── StorageUsageNotificationSender.cs │ │ │ │ ├── StorageUsagePayload.cs │ │ │ │ ├── TrafficNotificationSender.cs │ │ │ │ └── TrafficWatchPayload.cs │ │ │ ├── WidgetMessage.cs │ │ │ └── WidgetRequest.cs │ │ ├── DatabasesInfo.cs │ │ ├── DatabasesInfoRetriever.cs │ │ ├── DatabasesOngoingTasksInfo.cs │ │ ├── DrivesUsage.cs │ │ ├── IndexingSpeed.cs │ │ ├── ThreadsInfo.cs │ │ ├── ThreadsInfoNotificationSender.cs │ │ ├── ThreadsInfoNotifications.cs │ │ ├── ThreadsInfoOptions.cs │ │ └── TrafficWatch.cs │ ├── Documents │ │ ├── AbstractBackgroundWorkStorage.cs │ │ ├── AbstractCompareExchangeStorage.cs │ │ ├── AbstractDatabaseRequestHandler.cs │ │ ├── Attachment.cs │ │ ├── AttachmentOrTombstone.cs │ │ ├── AttachmentsStorage.Sharding.cs │ │ ├── AttachmentsStorage.cs │ │ ├── AttachmentsStorageHelper.cs │ │ ├── BackgroundWorkParameters.cs │ │ ├── BlittableMetadataModifier.cs │ │ ├── BucketStats.cs │ │ ├── CatastrophicFailureHandler.cs │ │ ├── Changes │ │ │ ├── AbstractChangesClientConnection.cs │ │ │ ├── ChangesClientConnection.cs │ │ │ ├── ChangesClientConnectionId.cs │ │ │ ├── DocumentsChanges.cs │ │ │ ├── DocumentsChangesBase.cs │ │ │ └── IDocumentsChanges.cs │ │ ├── CollectionName.cs │ │ ├── CollectionRunner.cs │ │ ├── Commands │ │ │ ├── Attachments │ │ │ │ ├── GetAttachmentHashCountCommand.cs │ │ │ │ └── GetAttachmentMetadataWithCountsCommand.cs │ │ │ ├── DocumentsCompression │ │ │ │ └── GetDocumentsCompressionConfigurationOperation.cs │ │ │ ├── ETL │ │ │ │ ├── ElasticSearchEtlTestCommand.cs │ │ │ │ ├── GetEtlTaskDebugStatsCommand.cs │ │ │ │ ├── GetEtlTaskPerformanceStatsCommand.cs │ │ │ │ ├── GetEtlTaskProgressCommand.cs │ │ │ │ ├── GetEtlTaskStatsCommand.cs │ │ │ │ ├── OlapEtlTestCommand.cs │ │ │ │ ├── QueueEtlTestCommand.cs │ │ │ │ ├── RavenEtlTestCommand.cs │ │ │ │ └── SqlEtlTestCommand.cs │ │ │ ├── Expiration │ │ │ │ └── GetDocumentsExpirationConfigurationOperation.cs │ │ │ ├── GenerateClassFromDocumentCommand.cs │ │ │ ├── Indexes │ │ │ │ ├── GenerateCSharpIndexDefinitionCommand.cs │ │ │ │ ├── GetIndexDebugCommand.cs │ │ │ │ ├── GetIndexErrorsCountCommand.cs │ │ │ │ ├── GetIndexStalenessCommand.cs │ │ │ │ ├── GetIndexesProgressCommand.cs │ │ │ │ ├── GetIndexesTotalTimeCommand.cs │ │ │ │ ├── OpenFaultyIndexCommand.cs │ │ │ │ ├── ReplaceIndexCommand.cs │ │ │ │ └── TestIndexCommand.cs │ │ │ ├── OngoingTasks │ │ │ │ ├── GetOngoingTasksCommand.cs │ │ │ │ └── GetPeriodicBackupTimersCommand.cs │ │ │ ├── Queries │ │ │ │ └── PatchByQueryTestCommand.cs │ │ │ ├── Replication │ │ │ │ ├── GetConflictsOperation.cs │ │ │ │ ├── GetIncomingReplicationRejectionInfoCommand.cs │ │ │ │ ├── GetReplicationActiveConnectionsInfoCommand.cs │ │ │ │ ├── GetReplicationIncomingActivityTimesInfoCommand.cs │ │ │ │ ├── GetReplicationOutgoingReconnectionQueueCommand.cs │ │ │ │ └── GetReplicationOutgoingsFailureInfoCommand.cs │ │ │ ├── Revisions │ │ │ │ ├── GetResolvedRevisionsCommand.cs │ │ │ │ └── GetRevisionsDebugCommand.cs │ │ │ ├── Storage │ │ │ │ ├── GetEnvironmentStorageReportCommand.cs │ │ │ │ └── GetStorageReportCommand.cs │ │ │ ├── Streaming │ │ │ │ └── PostQueryStreamCommand.cs │ │ │ ├── Studio │ │ │ │ ├── DeleteStudioCollectionOperation.cs │ │ │ │ └── GetStudioFooterStatisticsOperation.cs │ │ │ ├── Subscriptions │ │ │ │ └── GetSubscriptionConnectionsDetailsCommand.cs │ │ │ ├── TimeSeries │ │ │ │ ├── GetTimeSeriesCommand.cs │ │ │ │ └── GetTimeSeriesConfigurationOperation.cs │ │ │ ├── Tombstones │ │ │ │ ├── CleanupTombstonesCommand.cs │ │ │ │ └── GetTombstonesStateCommand.cs │ │ │ ├── ValidateUnusedIdsCommand.cs │ │ │ ├── WaitForIndexNotificationCommand.cs │ │ │ └── WaitForIndexNotificationOperation.cs │ │ ├── CompactDatabaseTask.cs │ │ ├── CompareExchangeStorage.cs │ │ ├── CompoundKeyHelper.cs │ │ ├── ComputeHttpEtags.cs │ │ ├── ConfigurationStorage.cs │ │ ├── ConflictsStorage.Sharding.cs │ │ ├── ConflictsStorage.cs │ │ ├── CountersRepairTask.cs │ │ ├── CountersStorage.Sharding.cs │ │ ├── CountersStorage.cs │ │ ├── DataArchival │ │ │ ├── ArchiveDocumentsCommand.cs │ │ │ ├── DataArchivalStorage.cs │ │ │ └── DataArchivist.cs │ │ ├── DatabaseInfoCache.cs │ │ ├── DatabaseMetricCacher.cs │ │ ├── DatabaseRaftIndexNotifications.cs │ │ ├── DatabaseRequestHandler.cs │ │ ├── DatabasesLandlord.cs │ │ ├── Document.cs │ │ ├── DocumentCompare.cs │ │ ├── DocumentConflict.cs │ │ ├── DocumentDatabase.cs │ │ ├── DocumentFlags.cs │ │ ├── DocumentIdWorker.cs │ │ ├── DocumentPutAction.cs │ │ ├── DocumentsStorage.Debug.cs │ │ ├── DocumentsStorage.cs │ │ ├── DocumentsTransaction.cs │ │ ├── ETL │ │ │ ├── EtlItemType.cs │ │ │ ├── EtlLoader.cs │ │ │ ├── EtlProcess.cs │ │ │ ├── EtlProcessStatistics.cs │ │ │ ├── EtlTransformer.cs │ │ │ ├── ExtractedItem.cs │ │ │ ├── ExtractedItemsEnumerator.cs │ │ │ ├── Handlers │ │ │ │ ├── EtlHandler.cs │ │ │ │ └── Processors │ │ │ │ │ ├── AbstractEtlHandlerProcessorForDebugStats.cs │ │ │ │ │ ├── AbstractEtlHandlerProcessorForPerformance.cs │ │ │ │ │ ├── AbstractEtlHandlerProcessorForPerformanceLive.cs │ │ │ │ │ ├── AbstractEtlHandlerProcessorForProgress.cs │ │ │ │ │ ├── AbstractEtlHandlerProcessorForStats.cs │ │ │ │ │ ├── EtlHandlerProcessorForDebugStats.cs │ │ │ │ │ ├── EtlHandlerProcessorForPerformance.cs │ │ │ │ │ ├── EtlHandlerProcessorForPerformanceLive.cs │ │ │ │ │ ├── EtlHandlerProcessorForProgress.cs │ │ │ │ │ └── EtlHandlerProcessorForStats.cs │ │ │ ├── LiveEtlPerformanceCollector.cs │ │ │ ├── Metrics │ │ │ │ └── EtlMetricsCountersManager.cs │ │ │ ├── Providers │ │ │ │ ├── Elasticsearch │ │ │ │ │ ├── BlittableJsonElasticSerializer.cs │ │ │ │ │ ├── ElasticIndexWithRecords.cs │ │ │ │ │ ├── ElasticSearchDocumentTransformer.cs │ │ │ │ │ ├── ElasticSearchEtl.cs │ │ │ │ │ ├── ElasticSearchEtlMetricsCountersManager.cs │ │ │ │ │ ├── ElasticSearchHelper.cs │ │ │ │ │ ├── ElasticSearchIndexValidator.cs │ │ │ │ │ ├── ElasticSearchItem.cs │ │ │ │ │ ├── ElasticsearchIndexWriterSimulator.cs │ │ │ │ │ ├── Enumerators │ │ │ │ │ │ ├── DocumentsToElasticsearchItems.cs │ │ │ │ │ │ └── TombstonesToElasticsearchItems.cs │ │ │ │ │ ├── Handlers │ │ │ │ │ │ ├── ElasticSearchEtlConnectionHandler.cs │ │ │ │ │ │ ├── ElasticsearchEtlHandler.cs │ │ │ │ │ │ └── Processors │ │ │ │ │ │ │ ├── ElasticSearchEtlConnectionHandlerForTestConnection.cs │ │ │ │ │ │ │ └── ElasticSearchEtlHandlerProcessorForTest.cs │ │ │ │ │ └── Test │ │ │ │ │ │ ├── ElasticsearchEtlTestScriptResult.cs │ │ │ │ │ │ ├── IndexSummary.cs │ │ │ │ │ │ └── TestElasticsearchEtlScript.cs │ │ │ │ ├── OLAP │ │ │ │ │ ├── DocumentsToOlapItems.cs │ │ │ │ │ ├── Handlers │ │ │ │ │ │ ├── OlapEtlHandler.cs │ │ │ │ │ │ └── Processors │ │ │ │ │ │ │ └── OlapEtlHandlerProcessorForTest.cs │ │ │ │ │ ├── OlapColumn.cs │ │ │ │ │ ├── OlapDocumentTransformer.cs │ │ │ │ │ ├── OlapEtlMetricsCountersManager.cs │ │ │ │ │ ├── OlapEtlPerformanceOperation.cs │ │ │ │ │ ├── OlapTransformedItems.cs │ │ │ │ │ ├── OlaptEtl.cs │ │ │ │ │ ├── ParquetTransformedItems.cs │ │ │ │ │ ├── RowGroup.cs │ │ │ │ │ ├── Test │ │ │ │ │ │ ├── OlapEtlTestScriptResult.cs │ │ │ │ │ │ └── TestOlapEtlScript.cs │ │ │ │ │ ├── ToOlapItem.cs │ │ │ │ │ └── UploadInfo.cs │ │ │ │ ├── Queue │ │ │ │ │ ├── AzureQueueStorage │ │ │ │ │ │ ├── AzureQueueStorageDocumentTransformer.cs │ │ │ │ │ │ ├── AzureQueueStorageEtl.cs │ │ │ │ │ │ └── AzureQueueStorageItem.cs │ │ │ │ │ ├── BlittableJsonEventBinaryFormatter.cs │ │ │ │ │ ├── CloudEventAttributes.cs │ │ │ │ │ ├── Enumerators │ │ │ │ │ │ └── DocumentsToQueueItems.cs │ │ │ │ │ ├── Handlers │ │ │ │ │ │ ├── Processors │ │ │ │ │ │ │ ├── QueueEtlHandlerProcessorForPostScriptTest.cs │ │ │ │ │ │ │ ├── QueueEtlHandlerProcessorForTestAzureQueueStorageConnection.cs │ │ │ │ │ │ │ ├── QueueEtlHandlerProcessorForTestKafkaConnection.cs │ │ │ │ │ │ │ └── QueueEtlHandlerProcessorForTestRabbitMqConnection.cs │ │ │ │ │ │ ├── QueueEtlConnectionHandler.cs │ │ │ │ │ │ └── QueueEtlHandler.cs │ │ │ │ │ ├── Kafka │ │ │ │ │ │ ├── KafkaDocumentTransformer.cs │ │ │ │ │ │ ├── KafkaEtl.cs │ │ │ │ │ │ └── KafkaItem.cs │ │ │ │ │ ├── QueueBrokerConnectionHelper.cs │ │ │ │ │ ├── QueueDocumentTransformer.cs │ │ │ │ │ ├── QueueEtl.cs │ │ │ │ │ ├── QueueItem.cs │ │ │ │ │ ├── QueueWithItems.cs │ │ │ │ │ ├── QueueWriterSimulator.cs │ │ │ │ │ ├── RabbitMq │ │ │ │ │ │ ├── RabbitMqDocumentTransformer.cs │ │ │ │ │ │ ├── RabbitMqEtl.cs │ │ │ │ │ │ └── RabbitMqItem.cs │ │ │ │ │ └── Test │ │ │ │ │ │ ├── QueueEtlTestScriptResult.cs │ │ │ │ │ │ ├── QueueSummary.cs │ │ │ │ │ │ └── TestQueueEtlScript.cs │ │ │ │ ├── Raven │ │ │ │ │ ├── Enumerators │ │ │ │ │ │ ├── AttachmentTombstonesToRavenEtlItems.cs │ │ │ │ │ │ ├── CountersToRavenEtlItems.cs │ │ │ │ │ │ ├── DocumentsToRavenEtlItems.cs │ │ │ │ │ │ ├── TimeSeriesDeletedRangeToRavenEtlItems.cs │ │ │ │ │ │ ├── TimeSeriesToRavenEtlItems.cs │ │ │ │ │ │ └── TombstonesToRavenEtlItems.cs │ │ │ │ │ ├── Handlers │ │ │ │ │ │ ├── Processors │ │ │ │ │ │ │ ├── AbstractDatabaseEtlHandlerProcessorForTest.cs │ │ │ │ │ │ │ ├── AbstractEtlHandlerProcessorForTest.cs │ │ │ │ │ │ │ └── EtlHandlerProcessorForTest.cs │ │ │ │ │ │ └── RavenEtlHandler.cs │ │ │ │ │ ├── RavenEtl.cs │ │ │ │ │ ├── RavenEtlDocumentTransformer.cs │ │ │ │ │ ├── RavenEtlItem.cs │ │ │ │ │ ├── RavenEtlScriptRun.cs │ │ │ │ │ └── Test │ │ │ │ │ │ ├── RavenEtlTestScriptResult.cs │ │ │ │ │ │ └── TestRavenEtlScript.cs │ │ │ │ └── SQL │ │ │ │ │ ├── Enumerators │ │ │ │ │ ├── DocumentsToSqlItems.cs │ │ │ │ │ └── TombstonesToSqlItems.cs │ │ │ │ │ ├── EtlPerformanceStats.cs │ │ │ │ │ ├── Handlers │ │ │ │ │ ├── Processors │ │ │ │ │ │ ├── SqlEtlHandlerProcessorForTest.cs │ │ │ │ │ │ └── SqlEtlHandlerProcessorForTestConnection.cs │ │ │ │ │ └── SqlEtlHandler.cs │ │ │ │ │ ├── Metrics │ │ │ │ │ ├── SqlEtlMetricsCountersManager.cs │ │ │ │ │ └── SqlReplicationMetrics.cs │ │ │ │ │ ├── RelationalWriters │ │ │ │ │ ├── DbCommandBuilder.cs │ │ │ │ │ ├── DbProviderFactories.cs │ │ │ │ │ ├── RelationalDatabaseWriter.cs │ │ │ │ │ ├── RelationalDatabaseWriterBase.cs │ │ │ │ │ ├── RelationalDatabaseWriterSimulator.cs │ │ │ │ │ ├── SqlWriteStats.cs │ │ │ │ │ └── TestSqlEtlScript.cs │ │ │ │ │ ├── SqlColumn.cs │ │ │ │ │ ├── SqlDocumentTransformer.cs │ │ │ │ │ ├── SqlEtl.cs │ │ │ │ │ ├── SqlTableWithRecords.cs │ │ │ │ │ ├── Test │ │ │ │ │ ├── SqlEtlTestScriptResult.cs │ │ │ │ │ └── TableQuerySummary.cs │ │ │ │ │ └── ToSqlItem.cs │ │ │ ├── Stats │ │ │ │ ├── EtlOperations.cs │ │ │ │ ├── EtlPerformanceOperation.cs │ │ │ │ ├── EtlPerformanceStats.cs │ │ │ │ ├── EtlProcessPerformanceStats.cs │ │ │ │ ├── EtlProcessProgress.cs │ │ │ │ ├── EtlRunStats.cs │ │ │ │ ├── EtlStatsAggregator.cs │ │ │ │ ├── EtlStatsScope.cs │ │ │ │ ├── EtlTaskDebugStats.cs │ │ │ │ └── EtlTaskStats.cs │ │ │ └── Test │ │ │ │ ├── TestEtlScript.cs │ │ │ │ └── TestEtlScriptResult.cs │ │ ├── ExecuteRateLimitedOperations.cs │ │ ├── Expiration │ │ │ ├── ExpirationStorage.cs │ │ │ └── ExpiredDocumentsCleaner.cs │ │ ├── Handlers │ │ │ ├── AbstractStreamJsonFileBlittableQueryResultWriter.cs │ │ │ ├── Admin │ │ │ │ ├── AdminAnalyzersHandler.cs │ │ │ │ ├── AdminConfigurationHandler.cs │ │ │ │ ├── AdminIndexHandler.cs │ │ │ │ ├── AdminLogsHandler.cs │ │ │ │ ├── AdminMemoryHandler.cs │ │ │ │ ├── AdminRevisionsHandler.cs │ │ │ │ ├── AdminScriptRunnersDebugInfoHandler.cs │ │ │ │ ├── AdminShardingHandler.cs │ │ │ │ ├── AdminSortersHandler.cs │ │ │ │ ├── AdminTimeSeriesHandler.cs │ │ │ │ ├── AdminTombstoneHandler.cs │ │ │ │ ├── Processors │ │ │ │ │ ├── Configuration │ │ │ │ │ │ ├── AbstractAdminConfigurationHandlerProcessor.cs │ │ │ │ │ │ ├── AbstractAdminConfigurationHandlerProcessorForGetSettings.cs │ │ │ │ │ │ ├── AbstractAdminConfigurationHandlerProcessorForPutClientConfiguration.cs │ │ │ │ │ │ ├── AbstractAdminConfigurationHandlerProcessorForPutSettings.cs │ │ │ │ │ │ ├── AbstractAdminConfigurationHandlerProcessorForPutStudioConfiguration.cs │ │ │ │ │ │ ├── AbstractHandlerProcessorForGetDatabaseRecord.cs │ │ │ │ │ │ ├── AdminConfigurationHandlerForGetDatabaseRecord.cs │ │ │ │ │ │ ├── AdminConfigurationHandlerProcessorForGetSettings.cs │ │ │ │ │ │ ├── AdminConfigurationHandlerProcessorForPutClientConfiguration.cs │ │ │ │ │ │ ├── AdminConfigurationHandlerProcessorForPutSettings.cs │ │ │ │ │ │ └── AdminConfigurationHandlerProcessorForPutStudioConfiguration.cs │ │ │ │ │ ├── Indexes │ │ │ │ │ │ ├── AbstractAdminIndexHandlerProcessorForDump.cs │ │ │ │ │ │ ├── AbstractAdminIndexHandlerProcessorForJavaScriptPut.cs │ │ │ │ │ │ ├── AbstractAdminIndexHandlerProcessorForPut.cs │ │ │ │ │ │ ├── AbstractAdminIndexHandlerProcessorForStart.cs │ │ │ │ │ │ ├── AbstractAdminIndexHandlerProcessorForState.cs │ │ │ │ │ │ ├── AbstractAdminIndexHandlerProcessorForStaticPut.cs │ │ │ │ │ │ ├── AbstractAdminIndexHandlerProcessorForStop.cs │ │ │ │ │ │ ├── AbstractAdminIndexHandlerProcessorForTestIndex.cs │ │ │ │ │ │ ├── AdminIndexHandlerProcessorForDump.cs │ │ │ │ │ │ ├── AdminIndexHandlerProcessorForJavaScriptPut.cs │ │ │ │ │ │ ├── AdminIndexHandlerProcessorForStart.cs │ │ │ │ │ │ ├── AdminIndexHandlerProcessorForState.cs │ │ │ │ │ │ ├── AdminIndexHandlerProcessorForStaticPut.cs │ │ │ │ │ │ ├── AdminIndexHandlerProcessorForStop.cs │ │ │ │ │ │ └── AdminIndexHandlerProcessorForTestIndex.cs │ │ │ │ │ ├── Revisions │ │ │ │ │ │ ├── AbstractAdminRevisionsHandlerProcessorForDeleteRevisions.cs │ │ │ │ │ │ ├── AbstractAdminRevisionsHandlerProcessorForEnforceRevisionsConfiguration.cs │ │ │ │ │ │ ├── AbstractAdminRevisionsHandlerProcessorForPostRevisionsConflictsConfiguration.cs │ │ │ │ │ │ ├── AdminRevisionsHandlerProcessorForAdoptOrphanedRevisions.cs │ │ │ │ │ │ ├── AdminRevisionsHandlerProcessorForDeleteRevisions.cs │ │ │ │ │ │ ├── AdminRevisionsHandlerProcessorForEnforceRevisionsConfiguration.cs │ │ │ │ │ │ ├── AdminRevisionsHandlerProcessorForPostRevisionsConflictsConfiguration.cs │ │ │ │ │ │ └── AdminRevisionsHandlerProcessorForRevisionsOperation.cs │ │ │ │ │ ├── Sorters │ │ │ │ │ │ ├── AbstractAdminSortersHandlerProcessorForDelete.cs │ │ │ │ │ │ ├── AbstractAdminSortersHandlerProcessorForPut.cs │ │ │ │ │ │ ├── AdminSortersHandlerProcessorForDelete.cs │ │ │ │ │ │ └── AdminSortersHandlerProcessorForPut.cs │ │ │ │ │ ├── TimeSeries │ │ │ │ │ │ ├── AbstractAdminTimeSeriesHandlerProcessorForDeleteTimeSeriesPolicy.cs │ │ │ │ │ │ ├── AbstractAdminTimeSeriesHandlerProcessorForPutTimeSeriesPolicy.cs │ │ │ │ │ │ ├── AdminTimeSeriesHandlerProcessorForDeleteTimeSeriesPolicy.cs │ │ │ │ │ │ └── AdminTimeSeriesHandlerProcessorForPutTimeSeriesPolicy.cs │ │ │ │ │ └── Tombstones │ │ │ │ │ │ ├── AbstractAdminTombstoneHandlerProcessorForCleanup.cs │ │ │ │ │ │ ├── AbstractAdminTombstoneHandlerProcessorForState.cs │ │ │ │ │ │ ├── AdminTombstoneHandlerProcessorForCleanup.cs │ │ │ │ │ │ └── AdminTombstoneHandlerProcessorForState.cs │ │ │ │ ├── RachisAdminHandler.cs │ │ │ │ └── RachisAdminHandlerProcessorForGetClusterLogs.cs │ │ │ ├── AnalyzersHandler.cs │ │ │ ├── AttachmentHandler.cs │ │ │ ├── Batches │ │ │ │ ├── AbstractBatchCommandParsingObserver.cs │ │ │ │ ├── AbstractBatchCommandReader.cs │ │ │ │ ├── BatchHandler.cs │ │ │ │ ├── BatchRequestParser.cs │ │ │ │ ├── Commands │ │ │ │ │ ├── ClusterTransactionMergedCommand.cs │ │ │ │ │ ├── ClusterTransactionMergedCommandDto.cs │ │ │ │ │ ├── IBatchCommand.cs │ │ │ │ │ ├── MergedBatchCommand.cs │ │ │ │ │ ├── MergedBatchCommandDto.cs │ │ │ │ │ └── TransactionMergedCommand.cs │ │ │ │ ├── DatabaseBatchCommandsReader.cs │ │ │ │ └── IBatchCommandData.cs │ │ │ ├── BulkInsert │ │ │ │ ├── AbstractBulkInsertBatchCommandsReader.cs │ │ │ │ ├── BulkInsertBatchCommandsReader.cs │ │ │ │ └── BulkInsertHandler.cs │ │ │ ├── ChangesHandler.cs │ │ │ ├── CollectionsHandler.cs │ │ │ ├── ConfigurationHandler.cs │ │ │ ├── CountersHandler.cs │ │ │ ├── DataArchivalHandler.cs │ │ │ ├── Debugging │ │ │ │ ├── DatabaseDebugInfoPackageHandler.cs │ │ │ │ ├── DocumentDebugHandler.cs │ │ │ │ ├── ExportAllDocIdsHandler.cs │ │ │ │ ├── IdentityDebugHandler.cs │ │ │ │ ├── MemoryDebugHandler.cs │ │ │ │ ├── NodeDebugHandler.cs │ │ │ │ ├── ProcStatsHandler.cs │ │ │ │ ├── Processors │ │ │ │ │ ├── AbstractQueriesDebugHandlerProcessorForKillQuery.cs │ │ │ │ │ ├── AbstractQueriesDebugHandlerProcessorForQueriesCacheList.cs │ │ │ │ │ ├── AbstractQueriesDebugHandlerProcessorForRunningQueries.cs │ │ │ │ │ ├── AbstractTransactionDebugHandlerProcessorForGetClusterInfo.cs │ │ │ │ │ ├── QueriesDebugHandlerProcessorForKillQuery.cs │ │ │ │ │ ├── QueriesDebugHandlerProcessorForQueriesCacheList.cs │ │ │ │ │ ├── QueriesDebugHandlerProcessorForRunningQueries.cs │ │ │ │ │ └── TransactionDebugHandlerProcessorForGetClusterInfo.cs │ │ │ │ ├── QueriesDebugHandler.cs │ │ │ │ ├── RevisionsHandler.cs │ │ │ │ ├── ScriptRunnersDebugInfoHandler.cs │ │ │ │ ├── ServerInfoHandler.cs │ │ │ │ ├── ServerTransactionDebugHandler.cs │ │ │ │ ├── ServerWideDebugInfoPackageHandler.cs │ │ │ │ ├── ServerWideQueriesDebugHandler.cs │ │ │ │ ├── StorageHandler.cs │ │ │ │ ├── ThreadsHandler.cs │ │ │ │ └── TransactionDebugHandler.cs │ │ │ ├── DocumentHandler.cs │ │ │ ├── DocumentsCompressionHandler.cs │ │ │ ├── ExpirationHandler.cs │ │ │ ├── HiLoHandler.cs │ │ │ ├── IdentityHandler.cs │ │ │ ├── IndexHandler.cs │ │ │ ├── IoMetricsHandler.cs │ │ │ ├── JsonPatchHandler.cs │ │ │ ├── LegacyReplicationHandler.cs │ │ │ ├── MultiGetHandler.cs │ │ │ ├── PerformanceMetricsHandler.cs │ │ │ ├── Processors │ │ │ │ ├── AbstractHandlerProcessor.cs │ │ │ │ ├── AbstractHandlerProxyNoContentProcessor.cs │ │ │ │ ├── AbstractHandlerProxyProcessor.cs │ │ │ │ ├── AbstractHandlerProxyReadProcessor.cs │ │ │ │ ├── AbstractHandlerWebSocketProxyProcessor.cs │ │ │ │ ├── Analyzers │ │ │ │ │ ├── AbstractAdminAnalyzersHandlerProcessorForDelete.cs │ │ │ │ │ ├── AbstractAdminAnalyzersHandlerProcessorForPut.cs │ │ │ │ │ ├── AdminAnalyzersHandlerProcessorForDelete.cs │ │ │ │ │ ├── AdminAnalyzersHandlerProcessorForPut.cs │ │ │ │ │ └── AnalyzersHandlerProcessorForGet.cs │ │ │ │ ├── Attachments │ │ │ │ │ ├── AbstractAttachmentHandlerProcessorForDeleteAttachment.cs │ │ │ │ │ ├── AbstractAttachmentHandlerProcessorForGetAttachment.cs │ │ │ │ │ ├── AbstractAttachmentHandlerProcessorForGetAttachmentMetadataWithCounts.cs │ │ │ │ │ ├── AbstractAttachmentHandlerProcessorForGetHashCount.cs │ │ │ │ │ ├── AbstractAttachmentHandlerProcessorForHeadAttachment.cs │ │ │ │ │ ├── AbstractAttachmentHandlerProcessorForPutAttachment.cs │ │ │ │ │ ├── AttachmentHandlerProcessorForDeleteAttachment.cs │ │ │ │ │ ├── AttachmentHandlerProcessorForGetAttachment.cs │ │ │ │ │ ├── AttachmentHandlerProcessorForGetAttachmentMetadataWithCounts.cs │ │ │ │ │ ├── AttachmentHandlerProcessorForGetHashCount.cs │ │ │ │ │ ├── AttachmentHandlerProcessorForHeadAttachment.cs │ │ │ │ │ ├── AttachmentHandlerProcessorForPutAttachment.cs │ │ │ │ │ └── RangeHelper.cs │ │ │ │ ├── Batches │ │ │ │ │ ├── AbstractBatchHandlerProcessorForBulkDocs.cs │ │ │ │ │ ├── AbstractClusterTransactionRequestProcessor.cs │ │ │ │ │ ├── BatchHandlerProcessorForBulkDocs.cs │ │ │ │ │ └── ClusterTransactionRequestProcessor.cs │ │ │ │ ├── BulkInsert │ │ │ │ │ ├── AbstractBulkInsertHandlerProcessor.cs │ │ │ │ │ ├── BulkInsertHandlerProcessor.cs │ │ │ │ │ ├── MergedInsertBulkCommand.cs │ │ │ │ │ └── MergedInsertBulkCommandDto.cs │ │ │ │ ├── Changes │ │ │ │ │ ├── AbstractChangesHandlerProcessorForDeleteConnections.cs │ │ │ │ │ ├── AbstractChangesHandlerProcessorForGetChanges.cs │ │ │ │ │ ├── AbstractChangesHandlerProcessorForGetConnectionsDebugInfo.cs │ │ │ │ │ ├── ChangesHandlerProcessorForDeleteConnections.cs │ │ │ │ │ ├── ChangesHandlerProcessorForGetChanges.cs │ │ │ │ │ └── ChangesHandlerProcessorForGetConnectionsDebugInfo.cs │ │ │ │ ├── Collections │ │ │ │ │ ├── AbstractCollectionsHandlerProcessorForGetCollectionDocuments.cs │ │ │ │ │ ├── AbstractCollectionsHandlerProcessorForGetCollectionStats.cs │ │ │ │ │ ├── AbstractCollectionsHandlerProcessorForGetLastChangeVector.cs │ │ │ │ │ ├── CollectionsHandlerProcessorForGetCollectionDocuments.cs │ │ │ │ │ ├── CollectionsHandlerProcessorForGetCollectionStats.cs │ │ │ │ │ └── CollectionsHandlerProcessorForGetLastChangeVector.cs │ │ │ │ ├── Configuration │ │ │ │ │ ├── AbstractConfigurationHandlerProcessorForGetClientConfiguration.cs │ │ │ │ │ ├── AbstractConfigurationHandlerProcessorForGetStudioConfiguration.cs │ │ │ │ │ ├── AbstractConfigurationHandlerProcessorForGetTimeSeriesConfiguration.cs │ │ │ │ │ ├── AbstractConfigurationHandlerProcessorForPostTimeSeriesConfiguration.cs │ │ │ │ │ ├── ConfigurationHandlerProcessorForGetClientConfiguration.cs │ │ │ │ │ ├── ConfigurationHandlerProcessorForGetStudioConfiguration.cs │ │ │ │ │ ├── ConfigurationHandlerProcessorForGetTimeSeriesConfiguration.cs │ │ │ │ │ └── ConfigurationHandlerProcessorForPostTimeSeriesConfiguration.cs │ │ │ │ ├── Counters │ │ │ │ │ ├── AbstractCountersHandlerProcessorForGetCounters.cs │ │ │ │ │ ├── AbstractCountersHandlerProcessorForPostCounters.cs │ │ │ │ │ ├── CountersHandlerProcessorForGetCounters.cs │ │ │ │ │ └── CountersHandlerProcessorForPostCounters.cs │ │ │ │ ├── DataArchival │ │ │ │ │ ├── AbstractDataArchivalHandlerProcessorForGet.cs │ │ │ │ │ ├── AbstractDataArchivalHandlerProcessorForPost.cs │ │ │ │ │ ├── DataArchivalHandlerProcessorForGet.cs │ │ │ │ │ └── DataArchivalHandlerProcessorForPost.cs │ │ │ │ ├── Databases │ │ │ │ │ ├── AbstractHandlerProcessorForUpdateDatabaseConfiguration.cs │ │ │ │ │ └── AbstractHandlerProcessorForUpdateDatabaseTask.cs │ │ │ │ ├── Debugging │ │ │ │ │ ├── AbstractStorageHandlerProcessorForGetEnvironmentReport.cs │ │ │ │ │ ├── AbstractStorageHandlerProcessorForGetReport.cs │ │ │ │ │ ├── StorageHandlerProcessorForGetEnvironmentPages.cs │ │ │ │ │ ├── StorageHandlerProcessorForGetEnvironmentReport.cs │ │ │ │ │ ├── StorageHandlerProcessorForGetReport.cs │ │ │ │ │ └── StorageHandlerProcessorForGetScratchBufferReport.cs │ │ │ │ ├── Documents │ │ │ │ │ ├── AbstractDocumentHandlerProcessorForDelete.cs │ │ │ │ │ ├── AbstractDocumentHandlerProcessorForGenerateClassFromDocument.cs │ │ │ │ │ ├── AbstractDocumentHandlerProcessorForGet.cs │ │ │ │ │ ├── AbstractDocumentHandlerProcessorForGetDocSize.cs │ │ │ │ │ ├── AbstractDocumentHandlerProcessorForHead.cs │ │ │ │ │ ├── AbstractDocumentHandlerProcessorForPatch.cs │ │ │ │ │ ├── AbstractDocumentHandlerProcessorForPut.cs │ │ │ │ │ ├── DocumentHandlerProcessorForDelete.cs │ │ │ │ │ ├── DocumentHandlerProcessorForGenerateClassFromDocument.cs │ │ │ │ │ ├── DocumentHandlerProcessorForGet.cs │ │ │ │ │ ├── DocumentHandlerProcessorForGetDocSize.cs │ │ │ │ │ ├── DocumentHandlerProcessorForHead.cs │ │ │ │ │ ├── DocumentHandlerProcessorForPatch.cs │ │ │ │ │ └── DocumentHandlerProcessorForPut.cs │ │ │ │ ├── DocumentsCompression │ │ │ │ │ ├── AbstractDocumentsCompressionHandlerProcessorForGet.cs │ │ │ │ │ ├── AbstractDocumentsCompressionHandlerProcessorForPost.cs │ │ │ │ │ ├── DocumentsCompressionHandlerProcessorForGet.cs │ │ │ │ │ └── DocumentsCompressionHandlerProcessorForPost.cs │ │ │ │ ├── Expiration │ │ │ │ │ ├── AbstractExpirationHandlerProcessorForGet.cs │ │ │ │ │ ├── AbstractExpirationHandlerProcessorForPost.cs │ │ │ │ │ ├── ExpirationHandlerProcessorForGet.cs │ │ │ │ │ └── ExpirationHandlerProcessorForPost.cs │ │ │ │ ├── HiLo │ │ │ │ │ ├── AbstractHiLoHandlerProcessorForGetNextHiLo.cs │ │ │ │ │ ├── AbstractHiLoHandlerProcessorForReturnHiLo.cs │ │ │ │ │ ├── HiLoHandlerProcessorForGetNextHiLo.cs │ │ │ │ │ └── HiLoHandlerProcessorForReturnHiLo.cs │ │ │ │ ├── Identities │ │ │ │ │ ├── AbstractIdentityDebugHandlerProcessorForGetIdentities.cs │ │ │ │ │ ├── AbstractIdentityHandlerProcessorForNextIdentityFor.cs │ │ │ │ │ ├── AbstractIdentityHandlerProcessorForPostIdentity.cs │ │ │ │ │ ├── IdentityDebugHandlerProcessorForGetIdentities.cs │ │ │ │ │ ├── IdentityHandlerProcessorForNextIdentityFor.cs │ │ │ │ │ └── IdentityHandlerProcessorForPostIdentity.cs │ │ │ │ ├── Indexes │ │ │ │ │ ├── AbstractIndexHandlerProcessorForClearErrors.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForDebug.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForDelete.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForGetAll.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForGetAllNames.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForGetDatabaseIndexStatistics.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForGetErrors.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForGetIndexesStatus.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForHasChanged.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForOpenFaultyIndex.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForPerformance.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForPerformanceLive.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForProgress.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForReplace.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForReset.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForSetLockMode.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForSetPriority.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForSource.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForStale.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForSuggestIndexMerge.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForTerms.cs │ │ │ │ │ ├── AbstractIndexHandlerProcessorForTotalTime.cs │ │ │ │ │ ├── AbstractIndexProcessorForGenerateCSharpIndexDefinition.cs │ │ │ │ │ ├── IndexHandlerProcessorForClearErrors.cs │ │ │ │ │ ├── IndexHandlerProcessorForConvertAutoIndex.cs │ │ │ │ │ ├── IndexHandlerProcessorForDebug.cs │ │ │ │ │ ├── IndexHandlerProcessorForDelete.cs │ │ │ │ │ ├── IndexHandlerProcessorForGetAll.cs │ │ │ │ │ ├── IndexHandlerProcessorForGetAllNames.cs │ │ │ │ │ ├── IndexHandlerProcessorForGetDatabaseIndexStatistics.cs │ │ │ │ │ ├── IndexHandlerProcessorForGetErrors.cs │ │ │ │ │ ├── IndexHandlerProcessorForGetIndexHistory.cs │ │ │ │ │ ├── IndexHandlerProcessorForGetIndexesStatus.cs │ │ │ │ │ ├── IndexHandlerProcessorForHasChanged.cs │ │ │ │ │ ├── IndexHandlerProcessorForOpenFaultyIndex.cs │ │ │ │ │ ├── IndexHandlerProcessorForPerformance.cs │ │ │ │ │ ├── IndexHandlerProcessorForPerformanceLive.cs │ │ │ │ │ ├── IndexHandlerProcessorForProgress.cs │ │ │ │ │ ├── IndexHandlerProcessorForReplace.cs │ │ │ │ │ ├── IndexHandlerProcessorForReset.cs │ │ │ │ │ ├── IndexHandlerProcessorForSetLockMode.cs │ │ │ │ │ ├── IndexHandlerProcessorForSetPriority.cs │ │ │ │ │ ├── IndexHandlerProcessorForSource.cs │ │ │ │ │ ├── IndexHandlerProcessorForStale.cs │ │ │ │ │ ├── IndexHandlerProcessorForSuggestIndexMerge.cs │ │ │ │ │ ├── IndexHandlerProcessorForTerms.cs │ │ │ │ │ ├── IndexHandlerProcessorForTotalTime.cs │ │ │ │ │ └── IndexProcessorForGenerateCSharpIndexDefinition.cs │ │ │ │ ├── IoMetrics │ │ │ │ │ ├── AbstractIoMetricsHandlerProcessorForLive.cs │ │ │ │ │ └── IoMetricsHandlerProcessorForLive.cs │ │ │ │ ├── MultiGet │ │ │ │ │ ├── AbstractMultiGetHandlerProcessorForPost.cs │ │ │ │ │ └── MultiGetHandlerProcessorForPost.cs │ │ │ │ ├── OngoingTasks │ │ │ │ │ ├── AbstractOngoingTasksHandlerProcessorForAddEtl.cs │ │ │ │ │ ├── AbstractOngoingTasksHandlerProcessorForAddQueueSink.cs │ │ │ │ │ ├── AbstractOngoingTasksHandlerProcessorForBackupDatabaseNow.cs │ │ │ │ │ ├── AbstractOngoingTasksHandlerProcessorForBackupDatabaseOnce.cs │ │ │ │ │ ├── AbstractOngoingTasksHandlerProcessorForDeleteOngoingTask.cs │ │ │ │ │ ├── AbstractOngoingTasksHandlerProcessorForDeleteSubscriptionTasks.cs │ │ │ │ │ ├── AbstractOngoingTasksHandlerProcessorForGetPullReplicationHubTasksInfo.cs │ │ │ │ │ ├── AbstractOngoingTasksHandlerProcessorForPostSubscriptionTasksState.cs │ │ │ │ │ ├── AbstractOngoingTasksHandlerProcessorForPutConnectionString.cs │ │ │ │ │ ├── AbstractOngoingTasksHandlerProcessorForRemoveConnectionString.cs │ │ │ │ │ ├── AbstractOngoingTasksHandlerProcessorForResetEtl.cs │ │ │ │ │ ├── AbstractOngoingTasksHandlerProcessorForToggleTaskState.cs │ │ │ │ │ ├── AbstractOngoingTasksHandlerProcessorForUpdateExternalReplication.cs │ │ │ │ │ ├── AbstractOngoingTasksHandlerProcessorForUpdatePeriodicBackup.cs │ │ │ │ │ ├── OngoingTasksHandlerProcessorForAddEtl.cs │ │ │ │ │ ├── OngoingTasksHandlerProcessorForAddQueueSink.cs │ │ │ │ │ ├── OngoingTasksHandlerProcessorForBackupDatabaseNow.cs │ │ │ │ │ ├── OngoingTasksHandlerProcessorForBackupDatabaseOnce.cs │ │ │ │ │ ├── OngoingTasksHandlerProcessorForDeleteOngoingTask.cs │ │ │ │ │ ├── OngoingTasksHandlerProcessorForDeleteSubscriptionTasks.cs │ │ │ │ │ ├── OngoingTasksHandlerProcessorForGetConnectionString.cs │ │ │ │ │ ├── OngoingTasksHandlerProcessorForGetFullBackupDataDirectory.cs │ │ │ │ │ ├── OngoingTasksHandlerProcessorForGetPeriodicBackupConfiguration.cs │ │ │ │ │ ├── OngoingTasksHandlerProcessorForGetPullReplicationHubTasksInfo.cs │ │ │ │ │ ├── OngoingTasksHandlerProcessorForGetRunningBackupOperationStatus.cs │ │ │ │ │ ├── OngoingTasksHandlerProcessorForPostSubscriptionTasksState.cs │ │ │ │ │ ├── OngoingTasksHandlerProcessorForPutConnectionString.cs │ │ │ │ │ ├── OngoingTasksHandlerProcessorForRemoveConnectionString.cs │ │ │ │ │ ├── OngoingTasksHandlerProcessorForResetEtl.cs │ │ │ │ │ ├── OngoingTasksHandlerProcessorForToggleTaskState.cs │ │ │ │ │ ├── OngoingTasksHandlerProcessorForUpdateExternalReplication.cs │ │ │ │ │ └── OngoingTasksHandlerProcessorForUpdatePeriodicBackup.cs │ │ │ │ ├── Queries │ │ │ │ │ ├── AbstractDatabaseOperationQueriesHandlerProcessor.cs │ │ │ │ │ ├── AbstractOperationQueriesHandlerProcessor.cs │ │ │ │ │ ├── AbstractQueriesHandlerProcessor.cs │ │ │ │ │ ├── AbstractQueriesHandlerProcessorForGet.cs │ │ │ │ │ ├── AbstractQueriesHandlerProcessorForPatchTest.cs │ │ │ │ │ ├── DatabaseQueriesHandlerProcessorForDelete.cs │ │ │ │ │ ├── DatabaseQueriesHandlerProcessorForGet.cs │ │ │ │ │ ├── DatabaseQueriesHandlerProcessorForPatch.cs │ │ │ │ │ └── DatabaseQueriesHandlerProcessorForPatchTest.cs │ │ │ │ ├── Rachis │ │ │ │ │ ├── AbstractRachisHandlerProcessorForWaitForIndexNotifications.cs │ │ │ │ │ └── RachisHandlerProcessorForWaitForIndexNotifications.cs │ │ │ │ ├── Refresh │ │ │ │ │ ├── AbstractRefreshHandlerProcessorForGetRefreshConfiguration.cs │ │ │ │ │ ├── AbstractRefreshHandlerProcessorForPostRefreshConfiguration.cs │ │ │ │ │ ├── RefreshHandlerProcessorForGetRefreshConfiguration.cs │ │ │ │ │ └── RefreshHandlerProcessorForPostRefreshConfiguration.cs │ │ │ │ ├── Replication │ │ │ │ │ ├── AbstractPullReplicationHandlerProcessorForDefineHub.cs │ │ │ │ │ ├── AbstractPullReplicationHandlerProcessorForGenerateCertificate.cs │ │ │ │ │ ├── AbstractPullReplicationHandlerProcessorForGetListHubAccess.cs │ │ │ │ │ ├── AbstractPullReplicationHandlerProcessorForRegisterHubAccess.cs │ │ │ │ │ ├── AbstractPullReplicationHandlerProcessorForUnregisterHubAccess.cs │ │ │ │ │ ├── AbstractPullReplicationHandlerProcessorForUpdatePullReplicationOnSinkNode.cs │ │ │ │ │ ├── AbstractReplicationHandlerProcessorForGetActiveConnections.cs │ │ │ │ │ ├── AbstractReplicationHandlerProcessorForGetConflictSolver.cs │ │ │ │ │ ├── AbstractReplicationHandlerProcessorForGetConflicts.cs │ │ │ │ │ ├── AbstractReplicationHandlerProcessorForGetIncomingActivityTimes.cs │ │ │ │ │ ├── AbstractReplicationHandlerProcessorForGetIncomingRejectionInfo.cs │ │ │ │ │ ├── AbstractReplicationHandlerProcessorForGetOutgoingFailureStats.cs │ │ │ │ │ ├── AbstractReplicationHandlerProcessorForGetOutgoingReconnectionQueue.cs │ │ │ │ │ ├── AbstractReplicationHandlerProcessorForGetPerformance.cs │ │ │ │ │ ├── AbstractReplicationHandlerProcessorForGetPerformanceLive.cs │ │ │ │ │ ├── AbstractReplicationHandlerProcessorForGetPulsesLive.cs │ │ │ │ │ ├── AbstractReplicationHandlerProcessorForGetTombstones.cs │ │ │ │ │ ├── PullReplicationHandlerProcessorForDefineHub.cs │ │ │ │ │ ├── PullReplicationHandlerProcessorForGenerateCertificate.cs │ │ │ │ │ ├── PullReplicationHandlerProcessorForGetListHubAccess.cs │ │ │ │ │ ├── PullReplicationHandlerProcessorForRegisterHubAccess.cs │ │ │ │ │ ├── PullReplicationHandlerProcessorForUnregisterHubAccess.cs │ │ │ │ │ ├── PullReplicationHandlerProcessorForUpdatePullReplicationOnSinkNode.cs │ │ │ │ │ ├── ReplicationHandlerProcessorForGetActiveConnections.cs │ │ │ │ │ ├── ReplicationHandlerProcessorForGetConflictSolver.cs │ │ │ │ │ ├── ReplicationHandlerProcessorForGetConflicts.cs │ │ │ │ │ ├── ReplicationHandlerProcessorForGetIncomingActivityTimes.cs │ │ │ │ │ ├── ReplicationHandlerProcessorForGetIncomingRejectionInfo.cs │ │ │ │ │ ├── ReplicationHandlerProcessorForGetOutgoingFailureStats.cs │ │ │ │ │ ├── ReplicationHandlerProcessorForGetOutgoingReconnectionQueue.cs │ │ │ │ │ ├── ReplicationHandlerProcessorForGetPerformance.cs │ │ │ │ │ ├── ReplicationHandlerProcessorForGetPerformanceLive.cs │ │ │ │ │ ├── ReplicationHandlerProcessorForGetPulsesLive.cs │ │ │ │ │ └── ReplicationHandlerProcessorForGetTombstones.cs │ │ │ │ ├── Revisions │ │ │ │ │ ├── AbstractRevisionsHandlerProcessorForGetResolvedRevisions.cs │ │ │ │ │ ├── AbstractRevisionsHandlerProcessorForGetRevisions.cs │ │ │ │ │ ├── AbstractRevisionsHandlerProcessorForGetRevisionsBin.cs │ │ │ │ │ ├── AbstractRevisionsHandlerProcessorForGetRevisionsConfiguration.cs │ │ │ │ │ ├── AbstractRevisionsHandlerProcessorForGetRevisionsConflictsConfiguration.cs │ │ │ │ │ ├── AbstractRevisionsHandlerProcessorForGetRevisionsCount.cs │ │ │ │ │ ├── AbstractRevisionsHandlerProcessorForGetRevisionsDebug.cs │ │ │ │ │ ├── AbstractRevisionsHandlerProcessorForPostRevisionsConfiguration.cs │ │ │ │ │ ├── AbstractRevisionsHandlerProcessorForRevertRevisions.cs │ │ │ │ │ ├── AbstractRevisionsHandlerProcessorForRevertRevisionsForDocument.cs │ │ │ │ │ ├── RevisionsHandlerProcessorForGetResolvedRevisions.cs │ │ │ │ │ ├── RevisionsHandlerProcessorForGetRevisions.cs │ │ │ │ │ ├── RevisionsHandlerProcessorForGetRevisionsBin.cs │ │ │ │ │ ├── RevisionsHandlerProcessorForGetRevisionsConfiguration.cs │ │ │ │ │ ├── RevisionsHandlerProcessorForGetRevisionsConflictsConfiguration.cs │ │ │ │ │ ├── RevisionsHandlerProcessorForGetRevisionsCount.cs │ │ │ │ │ ├── RevisionsHandlerProcessorForGetRevisionsDebug.cs │ │ │ │ │ ├── RevisionsHandlerProcessorForPostRevisionsConfiguration.cs │ │ │ │ │ ├── RevisionsHandlerProcessorForRevertRevisions.cs │ │ │ │ │ └── RevisionsHandlerProcessorForRevertRevisionsForDocument.cs │ │ │ │ ├── SampleData │ │ │ │ │ ├── AbstractSampleDataHandlerProcessorForGetSampleDataClasses.cs │ │ │ │ │ ├── AbstractSampleDataHandlerProcessorForPostSampleData.cs │ │ │ │ │ ├── SampleDataHandlerProcessorForGetSampleDataClasses.cs │ │ │ │ │ └── SampleDataHandlerProcessorForPostSampleData.cs │ │ │ │ ├── Smuggler │ │ │ │ │ ├── AbstractSmugglerHandlerProcessor.cs │ │ │ │ │ ├── AbstractSmugglerHandlerProcessorForExport.cs │ │ │ │ │ ├── AbstractSmugglerHandlerProcessorForImport.cs │ │ │ │ │ ├── AbstractSmugglerHandlerProcessorForImportDir.cs │ │ │ │ │ ├── AbstractSmugglerHandlerProcessorForImportGet.cs │ │ │ │ │ ├── ShardedSmugglerHandlerProcessorForImportDir.cs │ │ │ │ │ ├── ShardedSmugglerHandlerProcessorForImportGet.cs │ │ │ │ │ ├── SmugglerHandlerProcessorForExport.cs │ │ │ │ │ ├── SmugglerHandlerProcessorForImport.cs │ │ │ │ │ ├── SmugglerHandlerProcessorForImportDir.cs │ │ │ │ │ ├── SmugglerHandlerProcessorForImportGet.cs │ │ │ │ │ └── SmugglerHandlerProcessorForValidateOptions.cs │ │ │ │ ├── Sorters │ │ │ │ │ ├── AbstractSortersHandlerProcessorForGet.cs │ │ │ │ │ └── SortersHandlerProcessorForGet.cs │ │ │ │ ├── Stats │ │ │ │ │ ├── AbstractStatsHandlerProcessorForDatabaseHealthCheck.cs │ │ │ │ │ ├── AbstractStatsHandlerProcessorForEssentialStats.cs │ │ │ │ │ ├── AbstractStatsHandlerProcessorForGetDatabaseStatistics.cs │ │ │ │ │ ├── AbstractStatsHandlerProcessorForGetDetailedDatabaseStatistics.cs │ │ │ │ │ ├── AbstractStatsHandlerProcessorForGetMetrics.cs │ │ │ │ │ ├── AbstractStatsHandlerProcessorForGetMetricsBytes.cs │ │ │ │ │ ├── AbstractStatsHandlerProcessorForGetMetricsPuts.cs │ │ │ │ │ ├── AbstractStatsHandlerProcessorForPostValidateUnusedIds.cs │ │ │ │ │ ├── StatsHandlerProcessorForDatabaseHealthCheck.cs │ │ │ │ │ ├── StatsHandlerProcessorForEssentialStats.cs │ │ │ │ │ ├── StatsHandlerProcessorForGetDatabaseStatistics.cs │ │ │ │ │ ├── StatsHandlerProcessorForGetDetailedDatabaseStatistics.cs │ │ │ │ │ ├── StatsHandlerProcessorForGetMetrics.cs │ │ │ │ │ ├── StatsHandlerProcessorForGetMetricsBytes.cs │ │ │ │ │ ├── StatsHandlerProcessorForGetMetricsPuts.cs │ │ │ │ │ └── StatsHandlerProcessorForPostValidateUnusedIds.cs │ │ │ │ ├── Streaming │ │ │ │ │ ├── AbstractStreamingHandlerProcessorForGetDocs.cs │ │ │ │ │ ├── AbstractStreamingHandlerProcessorForGetStreamQuery.cs │ │ │ │ │ ├── AbstractStreamingHandlerProcessorForGetTimeSeries.cs │ │ │ │ │ ├── StreamingHandlerProcessorForGetDocs.cs │ │ │ │ │ ├── StreamingHandlerProcessorForGetStreamQuery.cs │ │ │ │ │ └── StreamingHandlerProcessorForGetTimeSeries.cs │ │ │ │ ├── Studio │ │ │ │ │ ├── AbstractStudioCollectionFieldsHandlerProcessorForGetCollectionFields.cs │ │ │ │ │ ├── AbstractStudioCollectionHandlerProcessorForDeleteCollection.cs │ │ │ │ │ ├── AbstractStudioStatsHandlerProcessorForGetFooterStats.cs │ │ │ │ │ ├── StudioCollectionFieldsHandlerProcessorForGetCollectionFields.cs │ │ │ │ │ ├── StudioCollectionHandlerProcessorForDeleteCollection.cs │ │ │ │ │ ├── StudioIndexHandlerProcessorForGetIndexErrorsCount.cs │ │ │ │ │ ├── StudioStatsHandlerProcessorForGetFooterStats.cs │ │ │ │ │ └── StudioStatsHandlerProcessorForGetLicenseLimitsUsage.cs │ │ │ │ ├── Subscriptions │ │ │ │ │ ├── AbstractSubscriptionHandlerProcessorForDeleteSubscription.cs │ │ │ │ │ ├── AbstractSubscriptionsHandlerProcessorForDropSubscriptionConnection.cs │ │ │ │ │ ├── AbstractSubscriptionsHandlerProcessorForGetConnectionDetails.cs │ │ │ │ │ ├── AbstractSubscriptionsHandlerProcessorForGetResend.cs │ │ │ │ │ ├── AbstractSubscriptionsHandlerProcessorForGetSubscription.cs │ │ │ │ │ ├── AbstractSubscriptionsHandlerProcessorForGetSubscriptionState.cs │ │ │ │ │ ├── AbstractSubscriptionsHandlerProcessorForPerformanceLive.cs │ │ │ │ │ ├── AbstractSubscriptionsHandlerProcessorForPostSubscription.cs │ │ │ │ │ ├── AbstractSubscriptionsHandlerProcessorForPutSubscription.cs │ │ │ │ │ ├── AbstractSubscriptionsHandlerProcessorForTrySubscription.cs │ │ │ │ │ ├── SubscriptionHandlerProcessorForDeleteSubscription.cs │ │ │ │ │ ├── SubscriptionsHandlerProcessorForDropSubscriptionConnection.cs │ │ │ │ │ ├── SubscriptionsHandlerProcessorForGetConnectionDetails.cs │ │ │ │ │ ├── SubscriptionsHandlerProcessorForGetResend.cs │ │ │ │ │ ├── SubscriptionsHandlerProcessorForGetSubscription.cs │ │ │ │ │ ├── SubscriptionsHandlerProcessorForGetSubscriptionState.cs │ │ │ │ │ ├── SubscriptionsHandlerProcessorForPerformanceLive.cs │ │ │ │ │ ├── SubscriptionsHandlerProcessorForPostSubscription.cs │ │ │ │ │ ├── SubscriptionsHandlerProcessorForPutSubscription.cs │ │ │ │ │ └── SubscriptionsHandlerProcessorForTrySubscription.cs │ │ │ │ ├── Tcp │ │ │ │ │ ├── AbstractTcpManagementHandlerProcessorForDelete.cs │ │ │ │ │ ├── AbstractTcpManagementHandlerProcessorForGetAll.cs │ │ │ │ │ ├── TcpManagementHandlerProcessorForDelete.cs │ │ │ │ │ └── TcpManagementHandlerProcessorForGetAll.cs │ │ │ │ └── TimeSeries │ │ │ │ │ ├── AbstractTimeSeriesHandlerProcessor.cs │ │ │ │ │ ├── AbstractTimeSeriesHandlerProcessorForGetDebugSegmentsSummary.cs │ │ │ │ │ ├── AbstractTimeSeriesHandlerProcessorForGetTimeSeries.cs │ │ │ │ │ ├── AbstractTimeSeriesHandlerProcessorForGetTimeSeriesRanges.cs │ │ │ │ │ ├── AbstractTimeSeriesHandlerProcessorForGetTimeSeriesStats.cs │ │ │ │ │ ├── AbstractTimeSeriesHandlerProcessorForPostTimeSeries.cs │ │ │ │ │ ├── AbstractTimeSeriesHandlerProcessorForPostTimeSeriesNamesConfiguration.cs │ │ │ │ │ ├── TimeSeriesHandlerProcessorForGetDebugSegmentsSummary.cs │ │ │ │ │ ├── TimeSeriesHandlerProcessorForGetTimeSeries.cs │ │ │ │ │ ├── TimeSeriesHandlerProcessorForGetTimeSeriesRanges.cs │ │ │ │ │ ├── TimeSeriesHandlerProcessorForGetTimeSeriesStats.cs │ │ │ │ │ ├── TimeSeriesHandlerProcessorForPostTimeSeries.cs │ │ │ │ │ └── TimeSeriesHandlerProcessorForPostTimeSeriesNamesConfiguration.cs │ │ │ ├── PullReplicationHandler.cs │ │ │ ├── QueriesHandler.cs │ │ │ ├── RachisDatabaseHandler.cs │ │ │ ├── RefreshHandler.cs │ │ │ ├── ReplicationHandler.cs │ │ │ ├── RevisionsHandler.cs │ │ │ ├── SecretKeyHandler.cs │ │ │ ├── SortersHandler.cs │ │ │ ├── StatsHandler.cs │ │ │ ├── StreamCsvBlittableQueryResultWriter.cs │ │ │ ├── StreamCsvDocumentQueryResultWriter.cs │ │ │ ├── StreamCsvResultWriter.cs │ │ │ ├── StreamJsonFileBlittableQueryResultWriter.cs │ │ │ ├── StreamJsonFileDocumentQueryResultWriter.cs │ │ │ ├── Streaming │ │ │ │ ├── DocsStreamingIterationState.cs │ │ │ │ ├── IStreamResultsWriter.cs │ │ │ │ ├── StreamJsonlResultsWriter.cs │ │ │ │ ├── StreamResultsWriter.cs │ │ │ │ └── StreamingHandler.cs │ │ │ ├── SubscriptionsHandler.cs │ │ │ ├── TcpManagementHandler.cs │ │ │ ├── TimeSeriesCsvWriter.cs │ │ │ ├── TimeSeriesHandler.cs │ │ │ └── TransactionsRecordingHandler.cs │ │ ├── HugeDocuments.cs │ │ ├── Includes │ │ │ ├── AbstractIncludeCountersCommand.cs │ │ │ ├── AbstractIncludeDocumentsCommand.cs │ │ │ ├── AbstractIncludeTimeSeriesCommand.cs │ │ │ ├── AbstractIncludesCommand.cs │ │ │ ├── DatabaseIncludesCommandImpl.cs │ │ │ ├── ICompareExchangeValueIncludes.cs │ │ │ ├── ICounterIncludes.cs │ │ │ ├── IRevisionIncludes.cs │ │ │ ├── ITimeSeriesIncludes.cs │ │ │ ├── IncludeCompareExchangeValuesCommand.cs │ │ │ ├── IncludeCountersCommand.cs │ │ │ ├── IncludeDocumentsCommand.cs │ │ │ ├── IncludeDocumentsDuringTimeSeriesLoadingCommand.cs │ │ │ ├── IncludeRevisionsCommand.cs │ │ │ ├── IncludeTimeSeriesCommand.cs │ │ │ └── Sharding │ │ │ │ ├── IncludeDocumentsOrchestratedSubscriptionCommand.cs │ │ │ │ ├── OrchestratorIncludesCommandImpl.cs │ │ │ │ ├── ShardIncludesCommandImpl.cs │ │ │ │ ├── ShardedCompareExchangeValueInclude.cs │ │ │ │ ├── ShardedCounterIncludes.cs │ │ │ │ ├── ShardedRevisionIncludes.cs │ │ │ │ └── ShardedTimeSeriesIncludes.cs │ │ ├── Indexes │ │ │ ├── AbstractCompilationCache.cs │ │ │ ├── AbstractIndexCreateController.cs │ │ │ ├── AbstractIndexDeleteController.cs │ │ │ ├── AbstractIndexHasChangedController.cs │ │ │ ├── AbstractIndexLockModeController.cs │ │ │ ├── AbstractIndexPriorityController.cs │ │ │ ├── AbstractIndexStateController.cs │ │ │ ├── Analysis │ │ │ │ ├── AnalyzerCompilationCache.cs │ │ │ │ ├── AnalyzerCompiler.cs │ │ │ │ ├── AnalyzerFactory.cs │ │ │ │ └── FaultyAnalyzerFactory.cs │ │ │ ├── AsyncWaitForIndexing.cs │ │ │ ├── Auto │ │ │ │ ├── AutoIndexDefinitionBaseServerSide.cs │ │ │ │ ├── AutoIndexDocsEnumerator.cs │ │ │ │ ├── AutoMapIndex.cs │ │ │ │ └── AutoMapIndexDefinition.cs │ │ │ ├── AutoIndexNameFinder.cs │ │ │ ├── CollectionOfBloomFilters.cs │ │ │ ├── CollectionOfIndexes.cs │ │ │ ├── CompiledIndexField.cs │ │ │ ├── ConcurrentLruRegexCache.cs │ │ │ ├── Configuration │ │ │ │ ├── FaultyInMemoryIndexConfiguration.cs │ │ │ │ ├── IndexUpdateType.cs │ │ │ │ ├── IndexUpdateTypeAttribute.cs │ │ │ │ └── SingleIndexConfiguration.cs │ │ │ ├── DatabaseIndexCreateController.cs │ │ │ ├── DatabaseIndexDeleteController.cs │ │ │ ├── DatabaseIndexHasChangedController.cs │ │ │ ├── DatabaseIndexLockModeController.cs │ │ │ ├── DatabaseIndexPriorityController.cs │ │ │ ├── DatabaseIndexStateController.cs │ │ │ ├── Debugging │ │ │ │ ├── IndexDebugExtensions.cs │ │ │ │ ├── MapResultInLeaf.cs │ │ │ │ ├── ReduceTree.cs │ │ │ │ └── ReduceTreePage.cs │ │ │ ├── Errors │ │ │ │ ├── FaultyAutoIndexDefinition.cs │ │ │ │ ├── FaultyInMemoryIndex.cs │ │ │ │ └── FaultyIndexDefinition.cs │ │ │ ├── GlobalIndexingScratchSpaceMonitor.cs │ │ │ ├── IIndexedDocumentsEnumerator.cs │ │ │ ├── Index.cs │ │ │ ├── IndexCreationOptions.cs │ │ │ ├── IndexDefinitionBaseServerSide.cs │ │ │ ├── IndexDefinitionCodeGenerator.cs │ │ │ ├── IndexField.cs │ │ │ ├── IndexFieldExtensions.cs │ │ │ ├── IndexFieldsPersistence.cs │ │ │ ├── IndexIdentities.cs │ │ │ ├── IndexInformationHolder.cs │ │ │ ├── IndexItem.cs │ │ │ ├── IndexItemType.cs │ │ │ ├── IndexMerging │ │ │ │ ├── CaptureSelectExpressionsAndNewFieldNamesVisitor.cs │ │ │ │ ├── IndexData.cs │ │ │ │ ├── IndexMergeResults.cs │ │ │ │ ├── IndexMerger.cs │ │ │ │ ├── IndexVisitor.cs │ │ │ │ └── SourceCodeBeautifier.cs │ │ │ ├── IndexStorage.cs │ │ │ ├── IndexStore.cs │ │ │ ├── IndexingRunStats.cs │ │ │ ├── IndexingState.cs │ │ │ ├── IndexingStatsAggregator.cs │ │ │ ├── LiveIndexingPerformanceCollector.cs │ │ │ ├── MapIndexBase.cs │ │ │ ├── MapReduce │ │ │ │ ├── AggregationResult.cs │ │ │ │ ├── Auto │ │ │ │ │ ├── AggregatedDocuments.cs │ │ │ │ │ ├── AutoMapReduceIndex.cs │ │ │ │ │ ├── AutoMapReduceIndexDefinition.cs │ │ │ │ │ ├── AutoMapReduceIndexResultsAggregator.cs │ │ │ │ │ └── ReduceMapResultsOfAutoIndex.cs │ │ │ │ ├── Exceptions │ │ │ │ │ ├── AggregationResultNotFoundException.cs │ │ │ │ │ ├── ExcessiveNumberOfReduceErrorsException.cs │ │ │ │ │ └── UnexpectedReduceTreePageException.cs │ │ │ │ ├── MapEntry.cs │ │ │ │ ├── MapReduceIndexBase.cs │ │ │ │ ├── MapReduceIndexingContext.cs │ │ │ │ ├── MapReduceResultsStore.cs │ │ │ │ ├── MapResult.cs │ │ │ │ ├── MapResultsStorageType.cs │ │ │ │ ├── NestedMapResultsSection.cs │ │ │ │ ├── OutputToCollection │ │ │ │ │ ├── DeleteReduceOutputDocumentsCommand.cs │ │ │ │ │ ├── OutputReduceLuceneIndexWriteOperation.cs │ │ │ │ │ ├── OutputReduceToCollectionActions.cs │ │ │ │ │ ├── OutputReduceToCollectionCommand.cs │ │ │ │ │ └── OutputReferencesPattern.cs │ │ │ │ ├── ReadMapEntryScope.cs │ │ │ │ ├── ReduceKeyProcessor.cs │ │ │ │ ├── ReduceMapResultsBase.cs │ │ │ │ └── Static │ │ │ │ │ ├── AggregatedAnonymousObjects.cs │ │ │ │ │ ├── MapReduceIndex.cs │ │ │ │ │ ├── MapReduceIndexDefinition.cs │ │ │ │ │ ├── ReduceMapResultsOfStaticIndex.cs │ │ │ │ │ └── Sharding │ │ │ │ │ ├── ShardedAggregatedAnonymousObjects.cs │ │ │ │ │ └── ShardedAggregatedAnonymousObjectsForIndexEntries.cs │ │ │ ├── NotForQueryingAttribute.cs │ │ │ ├── Persistence │ │ │ │ ├── AbstractQueryFilter.cs │ │ │ │ ├── ConverterBase.cs │ │ │ │ ├── Corax │ │ │ │ │ ├── AnalyzersScope.cs │ │ │ │ │ ├── AnonymousCoraxDocumentConverter.cs │ │ │ │ │ ├── CoraxDocumentConverter.cs │ │ │ │ │ ├── CoraxDocumentConverterBase.cs │ │ │ │ │ ├── CoraxDocumentTrainEnumerator.cs │ │ │ │ │ ├── CoraxDocumentTrainSourceEnumerator.cs │ │ │ │ │ ├── CoraxDynamicItem.cs │ │ │ │ │ ├── CoraxHighlightingTermIndex.cs │ │ │ │ │ ├── CoraxIndexFacetedReadOperation.cs │ │ │ │ │ ├── CoraxIndexPersistence.cs │ │ │ │ │ ├── CoraxIndexReadOperation.cs │ │ │ │ │ ├── CoraxIndexWriteOperation.cs │ │ │ │ │ ├── CoraxIndexedEntriesReader.cs │ │ │ │ │ ├── CoraxIndexingHelpers.cs │ │ │ │ │ ├── CoraxIndexingStats.cs │ │ │ │ │ ├── CoraxQueryBuilder.cs │ │ │ │ │ ├── CoraxSuggestionIndexReader.cs │ │ │ │ │ ├── CountersAndTimeSeriesAnonymousCoraxDocumentConverter.cs │ │ │ │ │ ├── CountersAndTimeSeriesJintCoraxDocumentConverter.cs │ │ │ │ │ ├── JintCoraxDocumentConverter.cs │ │ │ │ │ ├── OutputReduceCoraxIndexWriteOperation.cs │ │ │ │ │ └── QueryOptimizer │ │ │ │ │ │ ├── CoraxAndQueries.cs │ │ │ │ │ │ ├── CoraxBooleanItem.cs │ │ │ │ │ │ ├── CoraxBooleanQueryBase.cs │ │ │ │ │ │ └── CoraxOrQueries.cs │ │ │ │ ├── DatabaseIndexReadOperationFactory.cs │ │ │ │ ├── IIndexReadOperationFactory.cs │ │ │ │ ├── IndexFacetReadOperationBase.cs │ │ │ │ ├── IndexOperationBase.cs │ │ │ │ ├── IndexPersistenceBase.cs │ │ │ │ ├── IndexQueryingScopeBase.cs │ │ │ │ ├── IndexReadOperationBase.cs │ │ │ │ ├── IndexWriteOperationBase.cs │ │ │ │ ├── Lucene │ │ │ │ │ ├── Analyzers │ │ │ │ │ │ ├── Collation │ │ │ │ │ │ │ ├── AbstractCultureCollationAnalyzer.cs │ │ │ │ │ │ │ ├── CollationAnalyzer.cs │ │ │ │ │ │ │ ├── CollationKeyFilter.cs │ │ │ │ │ │ │ ├── Cultures │ │ │ │ │ │ │ │ ├── AfCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── AmCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── ArCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── ArnCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── AsCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── AzCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── BaCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── BeCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── BgCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── BnCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── BoCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── BrCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── BsCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── CaCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── CoCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── CsCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── CyCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── DaCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── DeCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── DsbCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── DvCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── ElCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── EnCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── EsCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── EtCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── EuCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── FaCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── FiCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── FilCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── FoCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── FrCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── FyCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── GaCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── GdCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── GlCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── GswCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── GuCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── HaCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── HeCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── HiCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── HrCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── HsbCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── HuCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── HyCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── IdCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── IgCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── IiCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── IsCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── ItCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── IuCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── IvCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── JaCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── KaCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── KkCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── KlCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── KmCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── KnCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── KoCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── KokCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── KyCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── LbCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── LoCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── LtCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── LvCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── MiCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── MkCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── MlCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── MnCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── MohCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── MrCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── MsCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── MtCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── NbCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── NeCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── NlCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── NnCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── NsoCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── OcCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── OrCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── PaCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── PlCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── PrsCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── PsCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── PtCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── QutCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── QuzCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── RmCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── RoCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── RuCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── RwCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── SaCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── SahCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── SeCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── SiCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── SkCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── SlCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── SmaCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── SmjCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── SmnCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── SmsCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── SqCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── SrCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── SvCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── SwCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── SyrCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── TaCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── TeCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── TgCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── ThCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── TkCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── TnCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── TrCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── TtCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── TzmCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── UgCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── UkCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── UrCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── UzCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── ViCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── WoCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── XhCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── YoCollationAnalyzer.cs │ │ │ │ │ │ │ │ ├── ZhCollationAnalyzer.cs │ │ │ │ │ │ │ │ └── ZuCollationAnalyzer.cs │ │ │ │ │ │ │ └── IndexableBinaryStringTools_UsingArrays.cs │ │ │ │ │ │ ├── LowerCaseKeywordAnalyzer.cs │ │ │ │ │ │ ├── LowerCaseKeywordTokenizer.cs │ │ │ │ │ │ ├── LowerCaseTokenizerBase.cs │ │ │ │ │ │ ├── LowerCaseWhitespaceAnalyzer.cs │ │ │ │ │ │ ├── LowerCaseWhitespaceTokenizer.cs │ │ │ │ │ │ ├── LuceneRavenPerFieldAnalyzerWrapper.cs │ │ │ │ │ │ ├── NGramAnalyzer.cs │ │ │ │ │ │ ├── NGramTokenFilter.cs │ │ │ │ │ │ ├── RavenStandardAnalyzer.cs │ │ │ │ │ │ └── RavenStandardFilter.cs │ │ │ │ │ ├── Collectors │ │ │ │ │ │ ├── CollectorsPool.cs │ │ │ │ │ │ ├── GatherAllCollector.cs │ │ │ │ │ │ ├── IntersectionCollector.cs │ │ │ │ │ │ └── NonSortingCollector.cs │ │ │ │ │ ├── Documents │ │ │ │ │ │ ├── AnonymousLuceneDocumentConverter.cs │ │ │ │ │ │ ├── DictionaryAccessor.cs │ │ │ │ │ │ ├── Fields │ │ │ │ │ │ │ ├── BlittableObjectReader.cs │ │ │ │ │ │ │ ├── BlittableObjectReaderPool.cs │ │ │ │ │ │ │ ├── CachedFieldItem.cs │ │ │ │ │ │ │ └── FieldCacheKey.cs │ │ │ │ │ │ ├── IPropertyAccessor.cs │ │ │ │ │ │ ├── JintLuceneDocumentConverter.cs │ │ │ │ │ │ ├── LuceneDocumentConverter.cs │ │ │ │ │ │ ├── LuceneDocumentConverterBase.cs │ │ │ │ │ │ ├── PropertyAccessor.cs │ │ │ │ │ │ └── TimeSeries │ │ │ │ │ │ │ ├── CountersAndTimeSeriesAnonymousLuceneDocumentConverter.cs │ │ │ │ │ │ │ └── CountersAndTimeSeriesJintLuceneDocumentConverter.cs │ │ │ │ │ ├── Highlightings │ │ │ │ │ │ ├── FastVectorHightlighter │ │ │ │ │ │ │ ├── BaseFragmentsBuilder.cs │ │ │ │ │ │ │ ├── FastVectorHighlighter.cs │ │ │ │ │ │ │ ├── FieldFragList.cs │ │ │ │ │ │ │ ├── FieldPhraseList.cs │ │ │ │ │ │ │ ├── FieldQuery.cs │ │ │ │ │ │ │ ├── FieldTermStack.cs │ │ │ │ │ │ │ ├── FragListBuilder.cs │ │ │ │ │ │ │ ├── FragmentsBuilder.cs │ │ │ │ │ │ │ ├── ScoreOrderFragmentsBuilder.cs │ │ │ │ │ │ │ ├── SimpleFragListBuilder.cs │ │ │ │ │ │ │ ├── StringUtils.cs │ │ │ │ │ │ │ ├── Support.cs │ │ │ │ │ │ │ └── VectorHighlightMapper.cs │ │ │ │ │ │ └── PerFieldFragmentsBuilder.cs │ │ │ │ │ ├── IndexedTerms.cs │ │ │ │ │ ├── LuceneAnalyzerAdapter.cs │ │ │ │ │ ├── LuceneAnalyzerAdapterForQuerying.cs │ │ │ │ │ ├── LuceneAnalyzerAdapterForWriter.cs │ │ │ │ │ ├── LuceneIndexFacetedReadOperation.cs │ │ │ │ │ ├── LuceneIndexPersistence.cs │ │ │ │ │ ├── LuceneIndexQueryingScope.cs │ │ │ │ │ ├── LuceneIndexReadOperation.cs │ │ │ │ │ ├── LuceneIndexSearcherHolder.cs │ │ │ │ │ ├── LuceneIndexWriteOperation.cs │ │ │ │ │ ├── LuceneIndexWriter.cs │ │ │ │ │ ├── LuceneIndexingExtensions.cs │ │ │ │ │ ├── LuceneIndexingHelpers.cs │ │ │ │ │ ├── LuceneSuggestionIndexReader.cs │ │ │ │ │ ├── LuceneSuggestionIndexWriter.cs │ │ │ │ │ ├── Suggestions │ │ │ │ │ │ ├── IStringDistance.cs │ │ │ │ │ │ ├── JaroWinklerDistance.cs │ │ │ │ │ │ ├── LevenshteinDistance.cs │ │ │ │ │ │ ├── NGramDistance.cs │ │ │ │ │ │ └── SuggestWordQueue.cs │ │ │ │ │ ├── TimeTrackingIndexWriter.cs │ │ │ │ │ └── TimeTrackingSerialMergeScheduler.cs │ │ │ │ ├── OutputReduceIndexWriteOperationScope.cs │ │ │ │ ├── QueryFilter.cs │ │ │ │ ├── SuggestWord.cs │ │ │ │ └── SuggestionIndexReaderBase.cs │ │ │ ├── QueryOperationContext.cs │ │ │ ├── QueryResultsIterationState.cs │ │ │ ├── Sharding │ │ │ │ ├── Persistence │ │ │ │ │ ├── Corax │ │ │ │ │ │ └── ShardedCoraxIndexReadOperation.cs │ │ │ │ │ ├── Lucene │ │ │ │ │ │ ├── ShardedLuceneIndexReadOperation.cs │ │ │ │ │ │ └── ShardedLuceneSuggestionIndexReader.cs │ │ │ │ │ └── ShardedIndexReadOperationFactory.cs │ │ │ │ ├── ShardedDatabaseIndexCreateController.cs │ │ │ │ ├── ShardedDatabaseIndexDeleteController.cs │ │ │ │ ├── ShardedDatabaseIndexLockModeController.cs │ │ │ │ ├── ShardedDatabaseIndexPriorityController.cs │ │ │ │ ├── ShardedDatabaseIndexStateController.cs │ │ │ │ ├── ShardedIndexCreateController.cs │ │ │ │ ├── ShardedIndexDeleteController.cs │ │ │ │ ├── ShardedIndexHasChangedController.cs │ │ │ │ ├── ShardedIndexLockModeController.cs │ │ │ │ ├── ShardedIndexPriorityController.cs │ │ │ │ ├── ShardedIndexStateController.cs │ │ │ │ └── ShardedIndexStore.cs │ │ │ ├── Sorting │ │ │ │ ├── FaultySorterFactory.cs │ │ │ │ ├── SorterCompilationCache.cs │ │ │ │ ├── SorterCompiler.cs │ │ │ │ └── SorterFactory.cs │ │ │ ├── Spatial │ │ │ │ ├── Circle.cs │ │ │ │ ├── Coordinates.cs │ │ │ │ ├── Polygon.cs │ │ │ │ ├── SpatialProperty.cs │ │ │ │ ├── SpatialShapeBase.cs │ │ │ │ └── SpatialShapeType.cs │ │ │ ├── Static │ │ │ │ ├── AbstractCountersAndTimeSeriesJavaScriptIndex.cs │ │ │ │ ├── Counters │ │ │ │ │ ├── CounterEntryObjectInstance.cs │ │ │ │ │ ├── CounterItemFilterBehavior.cs │ │ │ │ │ ├── CountersJavaScriptIndex.cs │ │ │ │ │ ├── DynamicCounterEntry.cs │ │ │ │ │ ├── MapCountersIndex.cs │ │ │ │ │ └── MapReduceCountersIndex.cs │ │ │ │ ├── CurrentIndexingScope.cs │ │ │ │ ├── DynamicArray.cs │ │ │ │ ├── DynamicAttachment.cs │ │ │ │ ├── DynamicBlittableJson.cs │ │ │ │ ├── DynamicDictionary.cs │ │ │ │ ├── DynamicNullObject.cs │ │ │ │ ├── EsprimaReferencedCollectionVisitor.cs │ │ │ │ ├── EsprimaVisitor.cs │ │ │ │ ├── Extensions │ │ │ │ │ ├── DynamicExtensionMethods.cs │ │ │ │ │ └── LinqOnDynamic.cs │ │ │ │ ├── IIndexItemFilterBehavior.cs │ │ │ │ ├── IndexCompilationCache.cs │ │ │ │ ├── IndexCompiler.cs │ │ │ │ ├── JavaScript │ │ │ │ │ ├── AttachmentNameObjectInstance.cs │ │ │ │ │ ├── AttachmentObjectInstance.cs │ │ │ │ │ ├── DynamicJsNull.cs │ │ │ │ │ ├── ObjectInstanceBase.cs │ │ │ │ │ └── RecursiveJsFunction.cs │ │ │ │ ├── JavaScriptIndex.cs │ │ │ │ ├── JavaScriptIndexFuncException.cs │ │ │ │ ├── JavaScriptIndexUtils.cs │ │ │ │ ├── JavaScriptMapOperation.cs │ │ │ │ ├── JavaScriptReduceOperation.cs │ │ │ │ ├── LazyCompressedJsString.cs │ │ │ │ ├── LazyJsString.cs │ │ │ │ ├── Linq │ │ │ │ │ └── DynamicEnumerable.cs │ │ │ │ ├── MapIndex.cs │ │ │ │ ├── MapIndexDefinition.cs │ │ │ │ ├── MismatchedReferencesWarningHandler.cs │ │ │ │ ├── NuGet │ │ │ │ │ ├── MultiSourceNuGetFetcher.cs │ │ │ │ │ ├── NuGetFetcher.cs │ │ │ │ │ ├── NuGetNativeLibraryResolver.cs │ │ │ │ │ └── ProjectContext.cs │ │ │ │ ├── RecursiveFunction.cs │ │ │ │ ├── Roslyn │ │ │ │ │ ├── FieldNamesValidator.cs │ │ │ │ │ ├── MapFunctionProcessor.cs │ │ │ │ │ ├── Rewriters │ │ │ │ │ │ ├── CaptureDictionaryFieldsNamesVisitor.cs │ │ │ │ │ │ ├── CaptureSelectNewFieldNamesVisitor.cs │ │ │ │ │ │ ├── CoalesceRewriter.cs │ │ │ │ │ │ ├── CollectionNameRetriever.cs │ │ │ │ │ │ ├── CollectionNameRetrieverBase.cs │ │ │ │ │ │ ├── CompareExchangeReferenceDetectorRewriter.cs │ │ │ │ │ │ ├── ConditionalAccessExpressionRewriter.cs │ │ │ │ │ │ ├── Counters │ │ │ │ │ │ │ └── CountersCollectionNameRetriever.cs │ │ │ │ │ │ ├── DynamicExtensionMethodsRewriter.cs │ │ │ │ │ │ ├── DynamicInvocationExpressionsRewriter.cs │ │ │ │ │ │ ├── DynamicLambdaExpressionsRewriter.cs │ │ │ │ │ │ ├── InitializerExpressionRewriter.cs │ │ │ │ │ │ ├── IsRewriter.cs │ │ │ │ │ │ ├── MethodDetectorRewriter.cs │ │ │ │ │ │ ├── MethodDynamicParametersRewriter.cs │ │ │ │ │ │ ├── NoTrackingRewriter.cs │ │ │ │ │ │ ├── NullRewriter.cs │ │ │ │ │ │ ├── RavenLinqOptimizer.cs │ │ │ │ │ │ ├── RavenLinqPrettifier.cs │ │ │ │ │ │ ├── RecurseRewriter.cs │ │ │ │ │ │ ├── ReduceIndex │ │ │ │ │ │ │ ├── GroupByFieldsRetriever.cs │ │ │ │ │ │ │ ├── ReduceFunctionProcessor.cs │ │ │ │ │ │ │ └── ResultsVariableNameRewriter.cs │ │ │ │ │ │ ├── ReferencedCollectionsRetriever.cs │ │ │ │ │ │ ├── RewritersHelper.cs │ │ │ │ │ │ ├── SelectManyRewriter.cs │ │ │ │ │ │ ├── SpatialFieldRewriter.cs │ │ │ │ │ │ ├── StackDepthRetriever.cs │ │ │ │ │ │ ├── ThrowOnInvalidMethodCalls.cs │ │ │ │ │ │ ├── TimeSeries │ │ │ │ │ │ │ └── TimeSeriesCollectionNameRetriever.cs │ │ │ │ │ │ └── WhereRewriter.cs │ │ │ │ │ └── RoslynHelper.cs │ │ │ │ ├── Sharding │ │ │ │ │ └── OrchestratorIndexingScope.cs │ │ │ │ ├── Spatial │ │ │ │ │ ├── BBoxStrategyThatSupportsAllShapes.cs │ │ │ │ │ ├── RecursivePrefixTreeStrategyThatSupportsWithin.cs │ │ │ │ │ ├── ShapeStringConverter.cs │ │ │ │ │ ├── ShapeStringReadWriter.cs │ │ │ │ │ ├── SpatialDistanceFieldComparatorSource.cs │ │ │ │ │ └── SpatialField.cs │ │ │ │ ├── StaticIndexBase.cs │ │ │ │ ├── StaticIndexItemEnumerator.cs │ │ │ │ ├── TimeCountingEnumerable.cs │ │ │ │ └── TimeSeries │ │ │ │ │ ├── DynamicTimeSeriesSegment.cs │ │ │ │ │ ├── MapReduceTimeSeriesIndex.cs │ │ │ │ │ ├── MapTimeSeriesIndex.cs │ │ │ │ │ ├── TimeSeriesJavaScriptIndex.cs │ │ │ │ │ └── TimeSeriesSegmentObjectInstance.cs │ │ │ ├── StaticIndexHelper.cs │ │ │ ├── Test │ │ │ │ ├── EmptyItemEnumerator.cs │ │ │ │ ├── TestIndexConfiguration.cs │ │ │ │ ├── TestIndexParameters.cs │ │ │ │ ├── TestIndexResult.cs │ │ │ │ ├── TestIndexRun.cs │ │ │ │ └── TestIndexWriteOperation.cs │ │ │ └── Workers │ │ │ │ ├── CanContinueBatchParameters.cs │ │ │ │ ├── Cleanup │ │ │ │ ├── CleanupDocuments.cs │ │ │ │ ├── CleanupDocumentsForMapReduce.cs │ │ │ │ ├── CleanupItemsBase.cs │ │ │ │ ├── CleanupTimeSeries.cs │ │ │ │ ├── CleanupTimeSeriesForMapReduce.cs │ │ │ │ └── TombstoneIndexItem.cs │ │ │ │ ├── Counters │ │ │ │ ├── HandleCompareExchangeCountersReferences.cs │ │ │ │ ├── HandleCountersReferences.cs │ │ │ │ └── MapCounters.cs │ │ │ │ ├── HandleCompareExchangeReferences.cs │ │ │ │ ├── HandleNotNormalizedCompareExchangeReferences.cs │ │ │ │ ├── HandleNotNormalizedDocumentReferences.cs │ │ │ │ ├── HandleReferences.cs │ │ │ │ ├── HandleReferencesBase.ReferencesState.cs │ │ │ │ ├── IIndexingWork.cs │ │ │ │ ├── IndexingWorkType.cs │ │ │ │ ├── MapDocuments.cs │ │ │ │ ├── MapItems.cs │ │ │ │ └── TimeSeries │ │ │ │ ├── HandleCompareExchangeTimeSeriesReferences.cs │ │ │ │ ├── HandleTimeSeriesReferences.cs │ │ │ │ └── MapTimeSeries.cs │ │ ├── InitializeOptions.cs │ │ ├── JsonClassGenerator.cs │ │ ├── OngoingTasks │ │ │ ├── AbstractOngoingTasks.cs │ │ │ └── OngoingTasks.cs │ │ ├── Operations │ │ │ ├── AbstractOperation.cs │ │ │ ├── AbstractOperations.cs │ │ │ ├── GetSegmentsSummaryOperation.cs │ │ │ ├── GetSubscriptionBatchesStateOperation.cs │ │ │ ├── Operation.cs │ │ │ ├── OperationDescription.cs │ │ │ ├── OperationType.cs │ │ │ ├── Operations.cs │ │ │ ├── OperationsStorage.cs │ │ │ └── RevertRevisionsOperation.cs │ │ ├── Patch │ │ │ ├── AdminJsConsole.cs │ │ │ ├── BlittableObjectInstance.cs │ │ │ ├── JavaScriptUtils.cs │ │ │ ├── JintDateTimeConverter.cs │ │ │ ├── JintEnumConverter.cs │ │ │ ├── JintGuidConverter.cs │ │ │ ├── JintNullPropagationReferenceResolver.cs │ │ │ ├── JintPreventResolvingTasksReferenceResolver.cs │ │ │ ├── JintStringConverter.cs │ │ │ ├── JintTimeSpanConverter.cs │ │ │ ├── JsBlittableBridge.cs │ │ │ ├── PatchConflict.cs │ │ │ ├── PatchDebugActions.cs │ │ │ ├── PatchDocumentCommand.cs │ │ │ ├── PatchRequest.cs │ │ │ ├── Polyfill.js │ │ │ ├── ScriptRunner.cs │ │ │ ├── ScriptRunnerCache.cs │ │ │ └── ScriptRunnerResult.cs │ │ ├── PeriodicBackup │ │ │ ├── Aws │ │ │ │ ├── RavenAwsGlacierClient.cs │ │ │ │ ├── RavenAwsS3Client.cs │ │ │ │ └── VaultNotFoundException.cs │ │ │ ├── Azure │ │ │ │ ├── ContainerNotFoundException.cs │ │ │ │ ├── LegacyRavenAzureClient.cs │ │ │ │ ├── RavenAzureClient.cs │ │ │ │ └── SubStream.cs │ │ │ ├── BackupCompressionAlgorithmExtensions.cs │ │ │ ├── BackupConfigurationHelper.cs │ │ │ ├── BackupDelayException.cs │ │ │ ├── BackupHelper.cs │ │ │ ├── BackupKind.cs │ │ │ ├── BackupParameters.cs │ │ │ ├── BackupTask.cs │ │ │ ├── BackupUploader.cs │ │ │ ├── ConcurrentBackupsCounter.cs │ │ │ ├── DatabaseSummary.cs │ │ │ ├── DirectUpload │ │ │ │ ├── AwsS3DirectUploadStream.cs │ │ │ │ ├── AwsS3MultiPartUploader.cs │ │ │ │ ├── AzureDirectUploadStream.cs │ │ │ │ ├── AzureMultiPartUploader.cs │ │ │ │ ├── DirectUploadBackupTask.cs │ │ │ │ ├── DirectUploadStream.cs │ │ │ │ ├── IDirectUploader.cs │ │ │ │ └── IMultiPartUploader.cs │ │ │ ├── EncryptedBackup.cs │ │ │ ├── GoogleCloud │ │ │ │ └── RavenGoogleCloudClient.cs │ │ │ ├── PeriodicBackup.cs │ │ │ ├── PeriodicBackupConnectionType.cs │ │ │ ├── PeriodicBackupInfo.cs │ │ │ ├── PeriodicBackupRunner.cs │ │ │ ├── Progress.cs │ │ │ ├── ProgressableStreamContent.cs │ │ │ ├── RavenFtpClient.cs │ │ │ ├── RavenStorageClient.cs │ │ │ ├── ResponsibleNodeForBackup.cs │ │ │ ├── Restore │ │ │ │ ├── AbstractRestoreBackupTask.cs │ │ │ │ ├── AzureRestorePoints.cs │ │ │ │ ├── FileInfoDetails.cs │ │ │ │ ├── GoogleCloudRestorePoints.cs │ │ │ │ ├── IRestoreSource.cs │ │ │ │ ├── LocalRestorePoints.cs │ │ │ │ ├── RestoreBackupTask.cs │ │ │ │ ├── RestoreFromAzure.cs │ │ │ │ ├── RestoreFromGoogleCloud.cs │ │ │ │ ├── RestoreFromLocal.cs │ │ │ │ ├── RestoreFromS3.cs │ │ │ │ ├── RestorePoints.cs │ │ │ │ ├── RestorePointsBase.cs │ │ │ │ ├── RestoreSettings.cs │ │ │ │ ├── RestoreSnapshotTask.cs │ │ │ │ ├── RestoreUtils.cs │ │ │ │ ├── S3RestorePoints.cs │ │ │ │ └── Sharding │ │ │ │ │ ├── ShardedRestoreOrchestrationTask.cs │ │ │ │ │ ├── ShardedRestoreResult.cs │ │ │ │ │ └── SingleShardRestoreBackupTask.cs │ │ │ └── Retention │ │ │ │ ├── AzureRetentionPolicyRunner.cs │ │ │ │ ├── FtpRetentionPolicyRunner.cs │ │ │ │ ├── GlacierRetentionPolicyRunner.cs │ │ │ │ ├── GoogleCloudRetentionPolicyRunner.cs │ │ │ │ ├── LocalRetentionPolicyRunner.cs │ │ │ │ ├── RetentionHelper.cs │ │ │ │ ├── RetentionPolicyBaseParameters.cs │ │ │ │ ├── RetentionPolicyRunnerBase.cs │ │ │ │ └── S3RetentionPolicyRunner.cs │ │ ├── Queries │ │ │ ├── AST │ │ │ │ ├── BetweenExpression.cs │ │ │ │ ├── BinaryExpression.cs │ │ │ │ ├── ExpressionType.cs │ │ │ │ ├── FieldExpression.cs │ │ │ │ ├── FromClause.cs │ │ │ │ ├── InExpression.cs │ │ │ │ ├── JavascriptCodeQueryVisitor.cs │ │ │ │ ├── JsonQueryVisitor.cs │ │ │ │ ├── MethodExpression.cs │ │ │ │ ├── NegatedExpresson.cs │ │ │ │ ├── NumberToken.cs │ │ │ │ ├── OperatorType.cs │ │ │ │ ├── OrderByFieldType.cs │ │ │ │ ├── ParameterToken.cs │ │ │ │ ├── Query.cs │ │ │ │ ├── QueryExpression.cs │ │ │ │ ├── QueryType.cs │ │ │ │ ├── QueryVisitor.cs │ │ │ │ ├── StringQueryVisitor.cs │ │ │ │ ├── TimeSeriesBetweenExpression.cs │ │ │ │ ├── TrueExpression.cs │ │ │ │ ├── ValueExpression.cs │ │ │ │ └── ValueTokenType.cs │ │ │ ├── AbstractDatabaseQueryRunner.cs │ │ │ ├── AbstractDocumentStreamQueryResultWriter.cs │ │ │ ├── AbstractQueryRunner.cs │ │ │ ├── CollectionQueryEnumerable.cs │ │ │ ├── Counters │ │ │ │ └── CounterIncludesField.cs │ │ │ ├── DocumentIdQueryResult.cs │ │ │ ├── DocumentQueryResult.cs │ │ │ ├── Dynamic │ │ │ │ ├── CollectionQueryResultsIterationState.cs │ │ │ │ ├── CollectionQueryRunner.cs │ │ │ │ ├── DynamicQueryMapping.cs │ │ │ │ ├── DynamicQueryMappingItem.cs │ │ │ │ ├── DynamicQueryRunner.cs │ │ │ │ └── DynamicQueryToIndexMatcher.cs │ │ │ ├── ExecutingQueryInfo.cs │ │ │ ├── Explanation │ │ │ │ ├── ExplanationField.cs │ │ │ │ └── ExplanationResult.cs │ │ │ ├── Facets │ │ │ │ ├── FacetField.cs │ │ │ │ ├── FacetQuery.cs │ │ │ │ ├── FacetedQueryHelper.cs │ │ │ │ ├── FacetedQueryParser.cs │ │ │ │ └── FacetedQueryResult.cs │ │ │ ├── FieldOptionsHelper.cs │ │ │ ├── FieldsToFetch.cs │ │ │ ├── GroupByField.cs │ │ │ ├── HasSpecialMethodVisitor.cs │ │ │ ├── Highlightings │ │ │ │ └── HighlightingField.cs │ │ │ ├── IStreamQueryResultWriter.cs │ │ │ ├── IndexEntriesQueryResult.cs │ │ │ ├── IndexFieldType.cs │ │ │ ├── IndexQueryServerSide.cs │ │ │ ├── InvalidQueryRunner.cs │ │ │ ├── LiveRunningQueriesCollector.cs │ │ │ ├── LuceneIntegration │ │ │ │ ├── CachingQuery.cs │ │ │ │ ├── FastBitArray.cs │ │ │ │ ├── FastBitArrayScorer.cs │ │ │ │ └── InQuery.cs │ │ │ ├── LuceneQueryBuilder.cs │ │ │ ├── LuceneQueryHelper.cs │ │ │ ├── LuceneTermType.cs │ │ │ ├── MethodType.cs │ │ │ ├── MoreLikeThis │ │ │ │ ├── Corax │ │ │ │ │ ├── MoreLikeThis.cs │ │ │ │ │ ├── MoreLikeThisQuery.cs │ │ │ │ │ └── RavenMoreLikeThis.cs │ │ │ │ ├── Lucene │ │ │ │ │ ├── MoreLikeThis.cs │ │ │ │ │ ├── MoreLikeThisQuery.cs │ │ │ │ │ └── RavenMoreLikeThis.cs │ │ │ │ ├── MoreLikeThisBase.cs │ │ │ │ └── MoreLikeThisQueryBase.cs │ │ │ ├── OrderByField.cs │ │ │ ├── Parser │ │ │ │ ├── QueryParser.cs │ │ │ │ ├── QueryScanner.cs │ │ │ │ └── RavenDB Query.grm │ │ │ ├── QueryBuilderFactories.cs │ │ │ ├── QueryBuilderHelper.cs │ │ │ ├── QueryFieldName.cs │ │ │ ├── QueryMetadata.cs │ │ │ ├── QueryMetadataCache.cs │ │ │ ├── QueryMethod.cs │ │ │ ├── QueryResultServerSide.cs │ │ │ ├── QueryRunner.cs │ │ │ ├── QueryValidator.cs │ │ │ ├── RavenBooleanQuery.cs │ │ │ ├── Regex │ │ │ │ ├── RegexQuery.cs │ │ │ │ └── RegexTermEnum.cs │ │ │ ├── Results │ │ │ │ ├── Counters │ │ │ │ │ └── CountersQueryResultRetriever.cs │ │ │ │ ├── IQueryResultRetriever.cs │ │ │ │ ├── MapQueryResultRetriever.cs │ │ │ │ ├── MapReduceQueryResultRetriever.cs │ │ │ │ ├── ProjectionOptions.cs │ │ │ │ ├── QueryResultRetrieverBase.cs │ │ │ │ ├── Sharding │ │ │ │ │ └── ShardedMapReduceResultRetriever.cs │ │ │ │ └── TimeSeries │ │ │ │ │ ├── AggregationHolder.cs │ │ │ │ │ ├── AverageAggregation.cs │ │ │ │ │ ├── PercentileAggregation.cs │ │ │ │ │ ├── SlopeAggregation.cs │ │ │ │ │ ├── StandardDeviationAggregation.cs │ │ │ │ │ ├── TimeSeriesAggregation.cs │ │ │ │ │ ├── TimeSeriesQueryResultRetriever.cs │ │ │ │ │ └── TimeSeriesRetriever.cs │ │ │ ├── Revisions │ │ │ │ └── RevisionIncludeField.cs │ │ │ ├── SelectField.cs │ │ │ ├── ShardedStreamQueryCsvResult.cs │ │ │ ├── Sharding │ │ │ │ ├── ShardedIndexEntriesQueryResult.cs │ │ │ │ └── ShardedQueryResult.cs │ │ │ ├── Sorting │ │ │ │ ├── AlphaNumeric │ │ │ │ │ ├── AlphaNumericComparatorSource.cs │ │ │ │ │ ├── AlphaNumericFieldComparator.cs │ │ │ │ │ ├── RandomFieldComparator.cs │ │ │ │ │ ├── RandomFieldComparatorSource.cs │ │ │ │ │ └── RandomSortField.cs │ │ │ │ └── Custom │ │ │ │ │ ├── CustomComparatorSource.cs │ │ │ │ │ └── TestFieldComparator.cs │ │ │ ├── StaticIndexQueryRunner.cs │ │ │ ├── StreamBlittableDocumentQueryResultWriter.cs │ │ │ ├── StreamDocumentIndexQueryResult.cs │ │ │ ├── StreamDocumentQueryResult.cs │ │ │ ├── StreamJsonDocumentQueryResultWriter.cs │ │ │ ├── StreamJsonlBlittableQueryResultWriter.cs │ │ │ ├── StreamJsonlDocumentQueryResultWriter.cs │ │ │ ├── StreamQueryResult.cs │ │ │ ├── Suggestions │ │ │ │ ├── SuggestionField.cs │ │ │ │ └── SuggestionQueryResult.cs │ │ │ ├── TermsQueryResultServerSide.cs │ │ │ ├── TimeSeries │ │ │ │ ├── TimeseriesIncludesField.cs │ │ │ │ └── TimeseriesIncludesHelper.cs │ │ │ ├── Timings │ │ │ │ └── QueryTimingsScope.cs │ │ │ ├── WhereExpressionVisitor.cs │ │ │ └── WhereField.cs │ │ ├── QueueSink │ │ │ ├── Commands │ │ │ │ └── BatchQueueSinkScriptCommand.cs │ │ │ ├── Handlers │ │ │ │ └── QueueSinkHandler.cs │ │ │ ├── IQueueSinkConsumer.cs │ │ │ ├── KafkaQueueSink.cs │ │ │ ├── KafkaSinkConsumer.cs │ │ │ ├── QueueSinkLoader.cs │ │ │ ├── QueueSinkProcess.cs │ │ │ ├── QueueSinkProcessStatistics.cs │ │ │ ├── RabbitMqQueueSink.cs │ │ │ ├── RabbitMqSinkConsumer.cs │ │ │ ├── Stats │ │ │ │ ├── Performance │ │ │ │ │ ├── LiveQueueSinkPerformanceCollector.cs │ │ │ │ │ ├── QueueSinkPerformanceOperation.cs │ │ │ │ │ ├── QueueSinkPerformanceStats.cs │ │ │ │ │ ├── QueueSinkProcessPerformanceStats.cs │ │ │ │ │ └── QueueSinkTaskPerformanceStats.cs │ │ │ │ ├── QueueSinkBatchPhases.cs │ │ │ │ ├── QueueSinkRunStats.cs │ │ │ │ ├── QueueSinkStatsAggregator.cs │ │ │ │ └── QueueSinkStatsScope.cs │ │ │ └── Test │ │ │ │ ├── TestQueueMessageCommand.cs │ │ │ │ ├── TestQueueSinkScript.cs │ │ │ │ └── TestQueueSinkScriptResult.cs │ │ ├── RaftIndexWaiter.cs │ │ ├── Refresh │ │ │ └── RefreshStorage.cs │ │ ├── ReplayTxCommandHelper.cs │ │ ├── Replication │ │ │ ├── AbstractReplicationLoader.cs │ │ │ ├── AllowedPathsValidator.cs │ │ │ ├── BucketMigrationReplication.cs │ │ │ ├── ChangeVectorEntry.cs │ │ │ ├── ChangeVectorExtensions.cs │ │ │ ├── ChangeVectorParser.cs │ │ │ ├── ConflictManager.cs │ │ │ ├── ConnectionShutdownInfo.cs │ │ │ ├── DocumentInfoHelper.cs │ │ │ ├── ExternalReplicationState.cs │ │ │ ├── Incoming │ │ │ │ ├── AbstractIncomingReplicationHandler.cs │ │ │ │ ├── IAbstractIncomingReplicationHandler.cs │ │ │ │ ├── IncomingMigrationReplicationHandler.cs │ │ │ │ ├── IncomingPullReplicationHandler.cs │ │ │ │ ├── IncomingReplicationAllocator.cs │ │ │ │ └── IncomingReplicationHandler.cs │ │ │ ├── InterruptibleRead.cs │ │ │ ├── Outgoing │ │ │ │ ├── AbstractOutgoingReplicationHandler.cs │ │ │ │ ├── DatabaseOutgoingReplicationHandler.cs │ │ │ │ ├── IAbstractOutgoingReplicationHandler.cs │ │ │ │ ├── OutgoingExternalReplicationHandler.cs │ │ │ │ ├── OutgoingInternalReplicationHandler.cs │ │ │ │ ├── OutgoingMigrationReplicationHandler.cs │ │ │ │ └── OutgoingPullReplicationHandler.cs │ │ │ ├── ReplicationHelper.cs │ │ │ ├── ReplicationItems │ │ │ │ ├── AttachmentReplicationItem.cs │ │ │ │ ├── AttachmentTombstoneReplicationItem.cs │ │ │ │ ├── CounterReplicationItem.cs │ │ │ │ ├── DocumentReplicationItem.cs │ │ │ │ ├── ReplicationBatchItem.cs │ │ │ │ ├── RevisionTombstoneReplicationItem.cs │ │ │ │ ├── TimeSeriesReplicationItem.cs │ │ │ │ └── TombstoneReplicationItem.cs │ │ │ ├── ReplicationLoader.cs │ │ │ ├── ReplicationMessageReply.cs │ │ │ ├── ReplicationOperation.cs │ │ │ ├── ResolveConflictOnReplicationConfigurationChange.cs │ │ │ ├── Senders │ │ │ │ ├── ExternalReplicationDocumentSender.cs │ │ │ │ ├── FilteredReplicationDocumentSender.cs │ │ │ │ ├── InternalReplicationDocumentSender.cs │ │ │ │ ├── MergedEnumerator.cs │ │ │ │ ├── MergedReplicationBatchEnumerator.cs │ │ │ │ ├── MigrationReplicationDocumentSender.cs │ │ │ │ └── ReplicationDocumentSenderBase.cs │ │ │ ├── ShardReplicationLoader.cs │ │ │ ├── ShardedExternalReplicationState.cs │ │ │ └── Stats │ │ │ │ ├── IncomingConnectionInfo.cs │ │ │ │ ├── IncomingReplicationStatsAggregator.cs │ │ │ │ ├── LiveReplicationPerformanceCollector.cs │ │ │ │ ├── LiveReplicationPulsesCollector.cs │ │ │ │ ├── OutgoingReplicationStatsAggregator.cs │ │ │ │ └── ReplicationRunStatsBase.cs │ │ ├── ResourceCache.cs │ │ ├── Revisions │ │ │ ├── DeleteRevisionsByChangeVectorMergedCommand.cs │ │ │ ├── DeleteRevisionsByDocumentIdMergedCommand.cs │ │ │ ├── RevertRevisionsRequest.cs │ │ │ ├── RevisionsOperations.cs │ │ │ ├── RevisionsStorage.Debug.cs │ │ │ ├── RevisionsStorage.Sharding.cs │ │ │ └── RevisionsStorage.cs │ │ ├── Schemas │ │ │ ├── Attachments.cs │ │ │ ├── Collections.cs │ │ │ ├── Conflicts.cs │ │ │ ├── CounterTombstones.cs │ │ │ ├── Counters.cs │ │ │ ├── DeletedRanges.cs │ │ │ ├── Documents.cs │ │ │ ├── Notifications.cs │ │ │ ├── Revisions.cs │ │ │ ├── TimeSeries.cs │ │ │ └── Tombstones.cs │ │ ├── Sharding │ │ │ ├── Background │ │ │ │ └── ShardedDocumentsMigrator.cs │ │ │ ├── BucketStats.cs │ │ │ ├── BucketStatsHolder.cs │ │ │ ├── Changes │ │ │ │ ├── DatabaseChangesForShard.cs │ │ │ │ ├── IAggressiveCacheChanges.cs │ │ │ │ ├── IShardedDatabaseChanges.cs │ │ │ │ ├── ShardedChangesClientConnection.cs │ │ │ │ ├── ShardedDatabaseChanges.cs │ │ │ │ └── ShardedDatabaseConnectionState.cs │ │ │ ├── Commands │ │ │ │ ├── Querying │ │ │ │ │ └── ShardedQueryCommand.cs │ │ │ │ ├── ShardedImportCommand.cs │ │ │ │ └── ShardedSingleNodeBatchCommand.cs │ │ │ ├── Comparers │ │ │ │ ├── ConstantComparer.cs │ │ │ │ ├── DocumentLastModifiedComparer.cs │ │ │ │ └── DocumentsComparer.cs │ │ │ ├── Executors │ │ │ │ ├── AbstractExecutor.cs │ │ │ │ ├── AllOrchestratorNodesExecutor.cs │ │ │ │ └── ShardExecutor.cs │ │ │ ├── Handlers │ │ │ │ ├── Admin │ │ │ │ │ ├── Processors │ │ │ │ │ │ ├── Analyzers │ │ │ │ │ │ │ ├── ShardedAdminAnalyzersHandlerProcessorForDelete.cs │ │ │ │ │ │ │ └── ShardedAdminAnalyzersHandlerProcessorForPut.cs │ │ │ │ │ │ ├── Configuration │ │ │ │ │ │ │ ├── ShardedAdminConfigurationHandlerProcessorForGetDatabaseRecord.cs │ │ │ │ │ │ │ ├── ShardedAdminConfigurationHandlerProcessorForGetSettings.cs │ │ │ │ │ │ │ ├── ShardedAdminConfigurationHandlerProcessorForPutClientConfiguration.cs │ │ │ │ │ │ │ ├── ShardedAdminConfigurationHandlerProcessorForPutSettings.cs │ │ │ │ │ │ │ └── ShardedAdminConfigurationHandlerProcessorForPutStudioConfiguration.cs │ │ │ │ │ │ ├── Indexes │ │ │ │ │ │ │ ├── ShardedAdminIndexHandlerProcessorForJavaScriptPut.cs │ │ │ │ │ │ │ ├── ShardedAdminIndexHandlerProcessorForStart.cs │ │ │ │ │ │ │ ├── ShardedAdminIndexHandlerProcessorForState.cs │ │ │ │ │ │ │ ├── ShardedAdminIndexHandlerProcessorForStaticPut.cs │ │ │ │ │ │ │ └── ShardedAdminIndexHandlerProcessorForStop.cs │ │ │ │ │ │ ├── Revisions │ │ │ │ │ │ │ ├── ShardedAdminRevisionsHandlerProcessorForAdoptOrphanedRevisions.cs │ │ │ │ │ │ │ ├── ShardedAdminRevisionsHandlerProcessorForDeleteRevisions.cs │ │ │ │ │ │ │ ├── ShardedAdminRevisionsHandlerProcessorForEnforceRevisionsConfiguration.cs │ │ │ │ │ │ │ ├── ShardedAdminRevisionsHandlerProcessorForPostRevisionsConflictsConfiguration.cs │ │ │ │ │ │ │ └── ShardedAdminRevisionsHandlerProcessorForRevisionsOperation.cs │ │ │ │ │ │ ├── TimeSeries │ │ │ │ │ │ │ ├── ShardedAdminTimeSeriesHandlerProcessorForDeleteTimeSeriesPolicy.cs │ │ │ │ │ │ │ └── ShardedAdminTimeSeriesHandlerProcessorForPutTimeSeriesPolicy.cs │ │ │ │ │ │ └── Tombstones │ │ │ │ │ │ │ ├── ShardedAdminTombstoneHandlerProcessorForCleanup.cs │ │ │ │ │ │ │ └── ShardedAdminTombstoneHandlerProcessorForState.cs │ │ │ │ │ ├── ShardedAdminAnalyzersHandler.cs │ │ │ │ │ ├── ShardedAdminConfigurationHandler.cs │ │ │ │ │ ├── ShardedAdminIndexHandler.cs │ │ │ │ │ ├── ShardedAdminRevisionsHandler.cs │ │ │ │ │ ├── ShardedAdminShardingHandler.cs │ │ │ │ │ ├── ShardedAdminSortersHandler.cs │ │ │ │ │ └── ShardedAdminTombstoneHandler.cs │ │ │ │ ├── Batches │ │ │ │ │ ├── BatchPatchSingleShardedCommand.cs │ │ │ │ │ ├── BufferedCommand.cs │ │ │ │ │ ├── BufferedCommandCopier.cs │ │ │ │ │ ├── ShardedBatchCommand.cs │ │ │ │ │ ├── ShardedBatchCommandsReader.cs │ │ │ │ │ ├── ShardedBatchHandler.cs │ │ │ │ │ └── SingleShardedCommand.cs │ │ │ │ ├── BulkInsert │ │ │ │ │ ├── BatchCommandStreamCopier.cs │ │ │ │ │ ├── ShardedBatchCommandData.cs │ │ │ │ │ ├── ShardedBulkInsertCommandsReader.cs │ │ │ │ │ └── ShardedBulkInsertHandler.cs │ │ │ │ ├── ContinuationTokens │ │ │ │ │ ├── ContinuationToken.cs │ │ │ │ │ └── ShardedPagingContinuation.cs │ │ │ │ ├── IncomingExternalReplicationHandlerForShard.cs │ │ │ │ ├── Processors │ │ │ │ │ ├── Attachments │ │ │ │ │ │ ├── ShardedAttachmentHandlerProcessorForDeleteAttachment.cs │ │ │ │ │ │ ├── ShardedAttachmentHandlerProcessorForGetAttachment.cs │ │ │ │ │ │ ├── ShardedAttachmentHandlerProcessorForGetAttachmentMetadataWithCounts.cs │ │ │ │ │ │ ├── ShardedAttachmentHandlerProcessorForGetHashCount.cs │ │ │ │ │ │ ├── ShardedAttachmentHandlerProcessorForHeadAttachment.cs │ │ │ │ │ │ └── ShardedAttachmentHandlerProcessorForPutAttachment.cs │ │ │ │ │ ├── Batches │ │ │ │ │ │ ├── ShardedBatchHandlerProcessorForBulkDocs.cs │ │ │ │ │ │ └── ShardedClusterTransactionRequestProcessor.cs │ │ │ │ │ ├── BulkInsert │ │ │ │ │ │ └── ShardedBulkInsertHandlerProcessor.cs │ │ │ │ │ ├── Changes │ │ │ │ │ │ ├── ShardedChangesHandlerProcessorForDeleteConnections.cs │ │ │ │ │ │ ├── ShardedChangesHandlerProcessorForGetChanges.cs │ │ │ │ │ │ └── ShardedChangesHandlerProcessorForGetConnectionsDebugInfo.cs │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── ShardedCollectionsHandlerProcessorForGetCollectionDocuments.cs │ │ │ │ │ │ ├── ShardedCollectionsHandlerProcessorForGetCollectionStats.cs │ │ │ │ │ │ └── ShardedCollectionsHandlerProcessorForGetLastChangeVector.cs │ │ │ │ │ ├── CompareExchange │ │ │ │ │ │ └── ShardedCompareExchangeHandlerProcessorForGetCompareExchangeValues.cs │ │ │ │ │ ├── Configuration │ │ │ │ │ │ ├── ShardedConfigurationHandlerProcessorForGetClientConfiguration.cs │ │ │ │ │ │ ├── ShardedConfigurationHandlerProcessorForGetStudioConfiguration.cs │ │ │ │ │ │ ├── ShardedConfigurationHandlerProcessorForGetTimeSeriesConfiguration.cs │ │ │ │ │ │ └── ShardedConfigurationHandlerProcessorForPostTimeSeriesConfiguration.cs │ │ │ │ │ ├── Counters │ │ │ │ │ │ ├── ShardedCountersHandlerProcessorForGetCounters.cs │ │ │ │ │ │ └── ShardedCountersHandlerProcessorForPostCounters.cs │ │ │ │ │ ├── DataArchival │ │ │ │ │ │ ├── ShardedDataArchivalHandlerProcessorForGet.cs │ │ │ │ │ │ └── ShardedDataArchivalHandlerProcessorForPost.cs │ │ │ │ │ ├── Debugging │ │ │ │ │ │ ├── ShardedStorageHandlerProcessorForGetEnvironmentReport.cs │ │ │ │ │ │ ├── ShardedStorageHandlerProcessorForGetReport.cs │ │ │ │ │ │ ├── ShardedStorageHandlerProcessorForGetScratchBufferReport.cs │ │ │ │ │ │ └── ShardedTransactionDebugHandlerProcessorForGetClusterInfo.cs │ │ │ │ │ ├── Documents │ │ │ │ │ │ ├── ShardedDocumentHandlerProcessorForDelete.cs │ │ │ │ │ │ ├── ShardedDocumentHandlerProcessorForGenerateClassFromDocument.cs │ │ │ │ │ │ ├── ShardedDocumentHandlerProcessorForGet.cs │ │ │ │ │ │ ├── ShardedDocumentHandlerProcessorForGetDocSize.cs │ │ │ │ │ │ ├── ShardedDocumentHandlerProcessorForHead.cs │ │ │ │ │ │ ├── ShardedDocumentHandlerProcessorForPatch.cs │ │ │ │ │ │ └── ShardedDocumentHandlerProcessorForPut.cs │ │ │ │ │ ├── DocumentsCompression │ │ │ │ │ │ ├── ShardedDocumentsCompressionHandlerProcessorForGet.cs │ │ │ │ │ │ └── ShardedDocumentsCompressionHandlerProcessorForPost.cs │ │ │ │ │ ├── ETL │ │ │ │ │ │ ├── AbstractShardedEtlHandlerProcessorForTest.cs │ │ │ │ │ │ ├── ShardedElasticSearchEtlHandlerProcessorForTest.cs │ │ │ │ │ │ ├── ShardedEtlHandlerProcessorForDebugStats.cs │ │ │ │ │ │ ├── ShardedEtlHandlerProcessorForPerformance.cs │ │ │ │ │ │ ├── ShardedEtlHandlerProcessorForPerformanceLive.cs │ │ │ │ │ │ ├── ShardedEtlHandlerProcessorForProgress.cs │ │ │ │ │ │ ├── ShardedEtlHandlerProcessorForStats.cs │ │ │ │ │ │ ├── ShardedOlapEtlHandlerProcessorForTest.cs │ │ │ │ │ │ ├── ShardedQueueEtlHandlerProcessorForPostScriptTest.cs │ │ │ │ │ │ ├── ShardedRavenEtlHandlerProcessorForTest.cs │ │ │ │ │ │ └── ShardedSqlEtlHandlerProcessorForTest.cs │ │ │ │ │ ├── Expiration │ │ │ │ │ │ ├── ShardedExpirationHandlerProcessorForGet.cs │ │ │ │ │ │ └── ShardedExpirationHandlerProcessorForPost.cs │ │ │ │ │ ├── HiLo │ │ │ │ │ │ ├── ShardedHiLoHandlerProcessorForGetNextHiLo.cs │ │ │ │ │ │ └── ShardedHiLoHandlerProcessorForReturnHiLo.cs │ │ │ │ │ ├── Identities │ │ │ │ │ │ ├── ShardedIdentityDebugHandlerProcessorForGetIdentities.cs │ │ │ │ │ │ ├── ShardedIdentityHandlerProcessorForNextIdentityFor.cs │ │ │ │ │ │ └── ShardedIdentityHandlerProcessorForPostIdentity.cs │ │ │ │ │ ├── Indexes │ │ │ │ │ │ ├── ShardedAdminIndexHandlerProcessorForDump.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForClearErrors.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForDebug.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForDelete.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForGetAll.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForGetAllNames.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForGetDatabaseIndexStatistics.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForGetErrors.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForGetIndexesStatus.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForHasChanged.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForOpenFaultyIndex.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForPerformance.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForPerformanceLive.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForProgress.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForReplace.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForReset.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForSetLockMode.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForSetPriority.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForSource.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForStale.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForSuggestIndexMerge.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForTerms.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForTestIndex.cs │ │ │ │ │ │ ├── ShardedIndexHandlerProcessorForTotalTime.cs │ │ │ │ │ │ └── ShardedIndexProcessorForGenerateCSharpIndexDefinition.cs │ │ │ │ │ ├── IoMetrics │ │ │ │ │ │ └── ShardedIoMetricsHandlerProcessorForLive.cs │ │ │ │ │ ├── MultiGet │ │ │ │ │ │ └── ShardedMultiGetHandlerProcessorForPost.cs │ │ │ │ │ ├── NotSupportedInShardingProcessor.cs │ │ │ │ │ ├── Notifications │ │ │ │ │ │ ├── ShardedDatabaseNotificationCenterHandlerProcessorForDismiss.cs │ │ │ │ │ │ ├── ShardedDatabaseNotificationCenterHandlerProcessorForPostpone.cs │ │ │ │ │ │ └── ShardedDatabaseNotificationCenterHandlerProcessorForWatch.cs │ │ │ │ │ ├── OngoingTasks │ │ │ │ │ │ ├── ShardedOngoingTasksHandlerProcessorForAddEtl.cs │ │ │ │ │ │ ├── ShardedOngoingTasksHandlerProcessorForAddQueueSink.cs │ │ │ │ │ │ ├── ShardedOngoingTasksHandlerProcessorForBackupDatabaseNow.cs │ │ │ │ │ │ ├── ShardedOngoingTasksHandlerProcessorForBackupDatabaseOnce.cs │ │ │ │ │ │ ├── ShardedOngoingTasksHandlerProcessorForDeleteOngoingTask.cs │ │ │ │ │ │ ├── ShardedOngoingTasksHandlerProcessorForDeleteSubscriptionTasks.cs │ │ │ │ │ │ ├── ShardedOngoingTasksHandlerProcessorForGetOngoingTask.cs │ │ │ │ │ │ ├── ShardedOngoingTasksHandlerProcessorForGetOngoingTasks.cs │ │ │ │ │ │ ├── ShardedOngoingTasksHandlerProcessorForGetPeriodicBackupTimers.cs │ │ │ │ │ │ ├── ShardedOngoingTasksHandlerProcessorForGetPullReplicationHubTasksInfo.cs │ │ │ │ │ │ ├── ShardedOngoingTasksHandlerProcessorForPostSubscriptionTasksState.cs │ │ │ │ │ │ ├── ShardedOngoingTasksHandlerProcessorForPutConnectionString.cs │ │ │ │ │ │ ├── ShardedOngoingTasksHandlerProcessorForRemoveConnectionString.cs │ │ │ │ │ │ ├── ShardedOngoingTasksHandlerProcessorForResetEtl.cs │ │ │ │ │ │ ├── ShardedOngoingTasksHandlerProcessorForToggleTaskState.cs │ │ │ │ │ │ └── ShardedOngoingTasksHandlerProcessorForUpdatePeriodicBackup.cs │ │ │ │ │ ├── Operations │ │ │ │ │ │ ├── ShardedOperationsHandlerProcessorForGetAll.cs │ │ │ │ │ │ ├── ShardedOperationsHandlerProcessorForGetNextOperationId.cs │ │ │ │ │ │ ├── ShardedOperationsHandlerProcessorForKill.cs │ │ │ │ │ │ └── ShardedOperationsHandlerProcessorForState.cs │ │ │ │ │ ├── Queries │ │ │ │ │ │ ├── AbstractShardedOperationQueriesHandlerProcessor.cs │ │ │ │ │ │ ├── ShardedQueriesDebugHandlerProcessorForKillQuery.cs │ │ │ │ │ │ ├── ShardedQueriesDebugHandlerProcessorForQueriesCacheList.cs │ │ │ │ │ │ ├── ShardedQueriesDebugHandlerProcessorForRunningQueries.cs │ │ │ │ │ │ ├── ShardedQueriesHandlerProcessorForDelete.cs │ │ │ │ │ │ ├── ShardedQueriesHandlerProcessorForGet.cs │ │ │ │ │ │ ├── ShardedQueriesHandlerProcessorForPatch.cs │ │ │ │ │ │ └── ShardedQueriesHandlerProcessorForPatchTest.cs │ │ │ │ │ ├── Rachis │ │ │ │ │ │ └── ShardedRachisHandlerProcessorForWaitForIndexNotifications.cs │ │ │ │ │ ├── Refresh │ │ │ │ │ │ ├── ShardedRefreshHandlerProcessorForGetRefreshConfiguration.cs │ │ │ │ │ │ └── ShardedRefreshHandlerProcessorForPostRefreshConfiguration.cs │ │ │ │ │ ├── Replication │ │ │ │ │ │ ├── ShardedOngoingTasksHandlerProcessorForUpdateExternalReplication.cs │ │ │ │ │ │ ├── ShardedPullReplicationHandlerProcessorForDefineHub.cs │ │ │ │ │ │ ├── ShardedPullReplicationHandlerProcessorForGenerateCertificate.cs │ │ │ │ │ │ ├── ShardedPullReplicationHandlerProcessorForGetListHubAccess.cs │ │ │ │ │ │ ├── ShardedPullReplicationHandlerProcessorForRegisterHubAccess.cs │ │ │ │ │ │ ├── ShardedPullReplicationHandlerProcessorForUnregisterHubAccess.cs │ │ │ │ │ │ ├── ShardedPullReplicationHandlerProcessorForUpdatePullReplicationOnSinkNode.cs │ │ │ │ │ │ ├── ShardedReplicationHandlerProcessorForGetActiveConnections.cs │ │ │ │ │ │ ├── ShardedReplicationHandlerProcessorForGetConflictSolver.cs │ │ │ │ │ │ ├── ShardedReplicationHandlerProcessorForGetConflicts.cs │ │ │ │ │ │ ├── ShardedReplicationHandlerProcessorForGetIncomingActivityTimes.cs │ │ │ │ │ │ ├── ShardedReplicationHandlerProcessorForGetIncomingRejectionInfo.cs │ │ │ │ │ │ ├── ShardedReplicationHandlerProcessorForGetOutgoingFailureStats.cs │ │ │ │ │ │ ├── ShardedReplicationHandlerProcessorForGetOutgoingReconnectionQueue.cs │ │ │ │ │ │ ├── ShardedReplicationHandlerProcessorForGetPerformance.cs │ │ │ │ │ │ ├── ShardedReplicationHandlerProcessorForGetPerformanceLive.cs │ │ │ │ │ │ ├── ShardedReplicationHandlerProcessorForGetPulsesLive.cs │ │ │ │ │ │ └── ShardedReplicationHandlerProcessorForGetTombstones.cs │ │ │ │ │ ├── Revisions │ │ │ │ │ │ ├── ShardedDeleteRevisionsOperation.cs │ │ │ │ │ │ ├── ShardedRevertRevisionsByIdOperation.cs │ │ │ │ │ │ ├── ShardedRevisionsHandlerProcessorForGetResolvedRevisions.cs │ │ │ │ │ │ ├── ShardedRevisionsHandlerProcessorForGetRevisions.cs │ │ │ │ │ │ ├── ShardedRevisionsHandlerProcessorForGetRevisionsBin.cs │ │ │ │ │ │ ├── ShardedRevisionsHandlerProcessorForGetRevisionsConfiguration.cs │ │ │ │ │ │ ├── ShardedRevisionsHandlerProcessorForGetRevisionsConflictsConfiguration.cs │ │ │ │ │ │ ├── ShardedRevisionsHandlerProcessorForGetRevisionsCount.cs │ │ │ │ │ │ ├── ShardedRevisionsHandlerProcessorForGetRevisionsDebug.cs │ │ │ │ │ │ ├── ShardedRevisionsHandlerProcessorForPostRevisionsConfiguration.cs │ │ │ │ │ │ ├── ShardedRevisionsHandlerProcessorForRevertRevisions.cs │ │ │ │ │ │ └── ShardedRevisionsHandlerProcessorForRevertRevisionsForDocument.cs │ │ │ │ │ ├── SampleData │ │ │ │ │ │ ├── ShardedSampleDataHandlerProcessorForGetSampleDataClasses.cs │ │ │ │ │ │ └── ShardedSampleDataHandlerProcessorForPostSampleData.cs │ │ │ │ │ ├── Smuggler │ │ │ │ │ │ ├── ShardedSmugglerHandlerProcessorForExport.cs │ │ │ │ │ │ └── ShardedSmugglerHandlerProcessorForImport.cs │ │ │ │ │ ├── Sorters │ │ │ │ │ │ └── ShardedSortersHandlerProcessorForGet.cs │ │ │ │ │ ├── Stats │ │ │ │ │ │ ├── ShardedStatsHandlerProcessorForDatabaseHealthCheck.cs │ │ │ │ │ │ ├── ShardedStatsHandlerProcessorForEssentialStats.cs │ │ │ │ │ │ ├── ShardedStatsHandlerProcessorForGetDatabaseStatistics.cs │ │ │ │ │ │ ├── ShardedStatsHandlerProcessorForGetDetailedDatabaseStatistics.cs │ │ │ │ │ │ ├── ShardedStatsHandlerProcessorForGetMetrics.cs │ │ │ │ │ │ ├── ShardedStatsHandlerProcessorForGetMetricsBytes.cs │ │ │ │ │ │ ├── ShardedStatsHandlerProcessorForGetMetricsPuts.cs │ │ │ │ │ │ └── ShardedStatsHandlerProcessorForPostValidateUnusedIds.cs │ │ │ │ │ ├── Streaming │ │ │ │ │ │ ├── ShardedStreamingHandlerProcessorForGetDocs.cs │ │ │ │ │ │ ├── ShardedStreamingHandlerProcessorForGetStreamQuery.cs │ │ │ │ │ │ └── ShardedStreamingHandlerProcessorForGetTimeSeries.cs │ │ │ │ │ ├── Studio │ │ │ │ │ │ ├── ShardedStudioCollectionFieldsHandlerProcessorForGetCollectionFields.cs │ │ │ │ │ │ ├── ShardedStudioCollectionHandlerProcessorForDeleteCollection.cs │ │ │ │ │ │ └── ShardedStudioStatsHandlerProcessorForGetFooterStats.cs │ │ │ │ │ ├── Subscriptions │ │ │ │ │ │ ├── ShardedSubscriptionHandlerProcessorForDeleteSubscription.cs │ │ │ │ │ │ ├── ShardedSubscriptionsHandlerProcessorForDropSubscriptionConnection.cs │ │ │ │ │ │ ├── ShardedSubscriptionsHandlerProcessorForGetConnectionDetails.cs │ │ │ │ │ │ ├── ShardedSubscriptionsHandlerProcessorForGetResend.cs │ │ │ │ │ │ ├── ShardedSubscriptionsHandlerProcessorForGetSubscription.cs │ │ │ │ │ │ ├── ShardedSubscriptionsHandlerProcessorForGetSubscriptionState.cs │ │ │ │ │ │ ├── ShardedSubscriptionsHandlerProcessorForPerformanceLive.cs │ │ │ │ │ │ ├── ShardedSubscriptionsHandlerProcessorForPostSubscription.cs │ │ │ │ │ │ ├── ShardedSubscriptionsHandlerProcessorForPutSubscription.cs │ │ │ │ │ │ └── ShardedSubscriptionsHandlerProcessorForTrySubscription.cs │ │ │ │ │ ├── Tcp │ │ │ │ │ │ ├── ShardedTcpManagementHandlerProcessorForDelete.cs │ │ │ │ │ │ └── ShardedTcpManagementHandlerProcessorForGetAll.cs │ │ │ │ │ └── TimeSeries │ │ │ │ │ │ ├── ShardedTimeSeriesHandlerProcessorForGetDebugSegmentsSummary.cs │ │ │ │ │ │ ├── ShardedTimeSeriesHandlerProcessorForGetTimeSeries.cs │ │ │ │ │ │ ├── ShardedTimeSeriesHandlerProcessorForGetTimeSeriesRanges.cs │ │ │ │ │ │ ├── ShardedTimeSeriesHandlerProcessorForGetTimeSeriesStats.cs │ │ │ │ │ │ ├── ShardedTimeSeriesHandlerProcessorForPostTimeSeries.cs │ │ │ │ │ │ └── ShardedTimeSeriesHandlerProcessorForPostTimeSeriesNamesConfiguration.cs │ │ │ │ ├── ReshardingHandler.cs │ │ │ │ ├── ShardedAdminTimesSeriesHandler.cs │ │ │ │ ├── ShardedAllDocumentIdsDebugHandler.cs │ │ │ │ ├── ShardedAnalyzersHandler.cs │ │ │ │ ├── ShardedAttachmentHandler.cs │ │ │ │ ├── ShardedChangesHandler.cs │ │ │ │ ├── ShardedCollectionHandler.cs │ │ │ │ ├── ShardedCompareExchangeHandler.cs │ │ │ │ ├── ShardedConfigurationHandler.cs │ │ │ │ ├── ShardedCountersHandler.cs │ │ │ │ ├── ShardedDataArchivalHandler.cs │ │ │ │ ├── ShardedDatabaseDebugInfoPackageHandler.cs │ │ │ │ ├── ShardedDatabaseNotificationCenterHandler.cs │ │ │ │ ├── ShardedDatabaseRequestHandler.ContinuationTokens.cs │ │ │ │ ├── ShardedDatabaseRequestHandler.cs │ │ │ │ ├── ShardedDatabaseTcpConnectionInfoHandler.cs │ │ │ │ ├── ShardedDocumentDebugHandler.cs │ │ │ │ ├── ShardedDocumentHandler.cs │ │ │ │ ├── ShardedDocumentsCompressionHandler.cs │ │ │ │ ├── ShardedElasticSearchEtlConnectionHandler.cs │ │ │ │ ├── ShardedElasticSearchEtlHandler.cs │ │ │ │ ├── ShardedEtlHandler.cs │ │ │ │ ├── ShardedExpirationHandler.cs │ │ │ │ ├── ShardedHiLoHandler.cs │ │ │ │ ├── ShardedIdentityDebugHandler.cs │ │ │ │ ├── ShardedIdentityHandler.cs │ │ │ │ ├── ShardedIncomingReplicationHandler.cs │ │ │ │ ├── ShardedIndexHandler.cs │ │ │ │ ├── ShardedIoMetricsHandler.cs │ │ │ │ ├── ShardedJsonPatchHandler.cs │ │ │ │ ├── ShardedLegacyReplicationHandler.cs │ │ │ │ ├── ShardedMultiGetHandler.cs │ │ │ │ ├── ShardedOlapEtlHandler.cs │ │ │ │ ├── ShardedOngoingTasksHandler.cs │ │ │ │ ├── ShardedOperationsHandler.cs │ │ │ │ ├── ShardedOutgoingReplicationHandler.cs │ │ │ │ ├── ShardedPerformanceMetricsHandler.cs │ │ │ │ ├── ShardedPullReplicationHandler.cs │ │ │ │ ├── ShardedQueriesDebugHandler.cs │ │ │ │ ├── ShardedQueriesHandler.cs │ │ │ │ ├── ShardedQueueEtlConnectionHandler.cs │ │ │ │ ├── ShardedQueueEtlHandler.cs │ │ │ │ ├── ShardedRachisDatabaseHandler.cs │ │ │ │ ├── ShardedRavenEtlHandler.cs │ │ │ │ ├── ShardedRefreshHandler.cs │ │ │ │ ├── ShardedReplicationHandler.cs │ │ │ │ ├── ShardedRevisionsHandler.cs │ │ │ │ ├── ShardedSampleDataHandler.cs │ │ │ │ ├── ShardedScriptRunnersDebugInfoHandler.cs │ │ │ │ ├── ShardedSmugglerHandler.cs │ │ │ │ ├── ShardedSortersHandler.cs │ │ │ │ ├── ShardedSqlEtlHandler.cs │ │ │ │ ├── ShardedStatsHandler.cs │ │ │ │ ├── ShardedStorageHandler.cs │ │ │ │ ├── ShardedStreamingHandler.cs │ │ │ │ ├── ShardedStudioCollectionFieldsHandler.cs │ │ │ │ ├── ShardedStudioStatsHandler.cs │ │ │ │ ├── ShardedSubscriptionsHandler.cs │ │ │ │ ├── ShardedTcpManagementHandler.cs │ │ │ │ ├── ShardedTimeSeriesHandler.cs │ │ │ │ ├── ShardedTransactionDebugHandler.cs │ │ │ │ └── ShardedTransactionsRecordingHandler.cs │ │ │ ├── NotificationCenter │ │ │ │ ├── BackgroundWork │ │ │ │ │ └── ShardedDatabaseStatsSender.cs │ │ │ │ └── ShardedDatabaseNotificationCenter.cs │ │ │ ├── Operations │ │ │ │ ├── AbstractShardedMultiOperation.cs │ │ │ │ ├── BulkInsert │ │ │ │ │ ├── ShardedBulkInsertOperation.cs │ │ │ │ │ └── ShardedBulkInsertWriter.cs │ │ │ │ ├── FetchDocumentsFromShardsOperation.cs │ │ │ │ ├── GetShardedOperationStateOperation.cs │ │ │ │ ├── IShardedOperation.cs │ │ │ │ ├── IShardedReadOperation.cs │ │ │ │ ├── Queries │ │ │ │ │ ├── AbstractShardedQueryOperation.cs │ │ │ │ │ ├── ShardedFacetedQueryOperation.cs │ │ │ │ │ ├── ShardedIndexEntriesQueryOperation.cs │ │ │ │ │ ├── ShardedQueryOperation.cs │ │ │ │ │ └── ShardedSuggestionQueryOperation.cs │ │ │ │ ├── ShardedBatchOperation.cs │ │ │ │ ├── ShardedDatabaseMultiOperation.cs │ │ │ │ ├── ShardedGetCollectionFieldsOperation.cs │ │ │ │ ├── ShardedGetRevisionsByChangeVectorsOperation.cs │ │ │ │ ├── ShardedLastChangeVectorForCollectionOperation.cs │ │ │ │ ├── ShardedOperation.cs │ │ │ │ ├── ShardedServerMultiOperation.cs │ │ │ │ ├── ShardedSubscriptionTryoutOperation.cs │ │ │ │ ├── ShardedTimeSeriesOperation.cs │ │ │ │ ├── WaitForIndexNotificationOnServerOperation.cs │ │ │ │ └── WaitForIndexNotificationOperation.cs │ │ │ ├── Queries │ │ │ │ ├── AbstractShardedQueryProcessor.cs │ │ │ │ ├── Facets │ │ │ │ │ └── ShardedFacetedQueryProcessor.cs │ │ │ │ ├── IndexEntries │ │ │ │ │ ├── ShardedIndexEntriesQueryProcessor.cs │ │ │ │ │ └── ShardedMapReduceIndexEntriesQueryResultsMerger.cs │ │ │ │ ├── ShardedAutoMapReduceIndexResultsAggregator.cs │ │ │ │ ├── ShardedMapReduceQueryResultsMerger.cs │ │ │ │ ├── ShardedQueryFilter.cs │ │ │ │ ├── ShardedQueryProcessor.cs │ │ │ │ ├── ShardedQueryProcessorBase.cs │ │ │ │ ├── ShardedQueryResultDocument.cs │ │ │ │ ├── ShardedQueryResultDocumentExtensions.cs │ │ │ │ ├── ShardedQueryRunner.cs │ │ │ │ ├── ShardedQueryStreamProcessor.cs │ │ │ │ ├── ShardedReduceMapResultsOfAutoIndex.cs │ │ │ │ ├── ShardedSuggestionResultExtensions.cs │ │ │ │ └── Suggestions │ │ │ │ │ ├── ShardedSuggestionQueryProcessor.cs │ │ │ │ │ └── ShardedSuggestionResult.cs │ │ │ ├── ShardLocator.cs │ │ │ ├── ShardedDatabaseContext.Changes.cs │ │ │ ├── ShardedDatabaseContext.Cluster.cs │ │ │ ├── ShardedDatabaseContext.CompareExchange.cs │ │ │ ├── ShardedDatabaseContext.Indexes.cs │ │ │ ├── ShardedDatabaseContext.Notifications.cs │ │ │ ├── ShardedDatabaseContext.OngoingTasks.cs │ │ │ ├── ShardedDatabaseContext.Operations.cs │ │ │ ├── ShardedDatabaseContext.Queries.cs │ │ │ ├── ShardedDatabaseContext.ReplicationLoader.cs │ │ │ ├── ShardedDatabaseContext.Smuggler.cs │ │ │ ├── ShardedDatabaseContext.Streaming.cs │ │ │ ├── ShardedDatabaseContext.Subscriptions.cs │ │ │ ├── ShardedDatabaseContext.Testing.cs │ │ │ ├── ShardedDatabaseContext.cs │ │ │ ├── ShardedDatabaseIdentifier.cs │ │ │ ├── ShardedDocumentDatabase.cs │ │ │ ├── ShardedDocumentPutAction.cs │ │ │ ├── ShardedDocumentsStorage.cs │ │ │ ├── Smuggler │ │ │ │ ├── ShardedDatabaseDestination.cs │ │ │ │ └── ShardedDatabaseSmugglerFactory.cs │ │ │ ├── Streaming │ │ │ │ ├── CombinedReadContinuationState.cs │ │ │ │ ├── CombinedStreamResult.cs │ │ │ │ ├── Comparers │ │ │ │ │ ├── DocumentByLastModifiedDescComparer.cs │ │ │ │ │ └── StreamDocumentByLastModifiedComparer.cs │ │ │ │ ├── ReadContinuationState.cs │ │ │ │ ├── ShardResultConverter.cs │ │ │ │ ├── ShardStreamExposerHolder.cs │ │ │ │ ├── ShardStreamItem.cs │ │ │ │ └── YieldShardStreamResults.cs │ │ │ └── Subscriptions │ │ │ │ ├── OrchestratedSubscriptionConnection.cs │ │ │ │ ├── ShardedDocumentsDatabaseSubscriptionProcessor.cs │ │ │ │ ├── ShardedRevisionsDatabaseSubscriptionProcessor.cs │ │ │ │ ├── ShardedSubscriptionBatch.cs │ │ │ │ ├── ShardedSubscriptionWorker.cs │ │ │ │ └── SubscriptionConnectionsStateOrchestrator.cs │ │ ├── Smuggler │ │ │ ├── AbstractDatabaseSmugglerFactory.cs │ │ │ └── DatabaseSmugglerFactory.cs │ │ ├── StreamsTempFile.cs │ │ ├── Studio │ │ │ ├── FeedbackForm.cs │ │ │ └── FooterStatistics.cs │ │ ├── Subscriptions │ │ │ ├── AbstractSubscriptionConnectionsState.cs │ │ │ ├── AbstractSubscriptionStorage.cs │ │ │ ├── DummySubscriptionConnectionsState.cs │ │ │ ├── ISubscriptionConnection.cs │ │ │ ├── LiveSubscriptionPerformanceCollector.cs │ │ │ ├── Processor │ │ │ │ ├── AbstractSubscriptionProcessor.cs │ │ │ │ ├── DatabaseSubscriptionProcessor.cs │ │ │ │ ├── DocumentsDatabaseSubscriptionProcessor.cs │ │ │ │ ├── IDatabaseSubscriptionProcessor.cs │ │ │ │ ├── ISubscriptionProcessor.cs │ │ │ │ ├── OrchestratedSubscriptionProcessor.cs │ │ │ │ ├── RevisionsDatabaseSubscriptionProcessor.cs │ │ │ │ ├── SubscriptionBatchItem.cs │ │ │ │ ├── SubscriptionBatchItemStatus.cs │ │ │ │ ├── SubscriptionBatchResult.cs │ │ │ │ ├── SubscriptionBatchStatus.cs │ │ │ │ └── TestSubscriptionProcessor.cs │ │ │ ├── ResendItem.cs │ │ │ ├── Sharding │ │ │ │ ├── ShardDocumentSubscriptionFetcher.cs │ │ │ │ ├── ShardSubscriptionStorage.cs │ │ │ │ └── SubscriptionConnectionsStateForShard.cs │ │ │ ├── Stats │ │ │ │ ├── SubscriptionBatchPerformanceOperation.cs │ │ │ │ ├── SubscriptionBatchPerformanceStats.cs │ │ │ │ ├── SubscriptionBatchRunStats.cs │ │ │ │ ├── SubscriptionBatchStatsAggregator.cs │ │ │ │ ├── SubscriptionBatchStatsScope.cs │ │ │ │ ├── SubscriptionConnectionPerformanceOperation.cs │ │ │ │ ├── SubscriptionConnectionPerformanceStats.cs │ │ │ │ ├── SubscriptionConnectionRunStats.cs │ │ │ │ ├── SubscriptionConnectionStatsAggregator.cs │ │ │ │ └── SubscriptionConnectionStatsScope.cs │ │ │ ├── SubscriptionBinder.cs │ │ │ ├── SubscriptionConnectionBase.cs │ │ │ ├── SubscriptionConnectionInfo.cs │ │ │ ├── SubscriptionConnectionStats.cs │ │ │ ├── SubscriptionConnectionsState.cs │ │ │ ├── SubscriptionFetcher.cs │ │ │ ├── SubscriptionPatchDocument.cs │ │ │ ├── SubscriptionStatsCollector.cs │ │ │ ├── SubscriptionStorage.cs │ │ │ └── SubscriptionTaskPerformanceStats.cs │ │ ├── TcpHandlers │ │ │ ├── SubscriptionConnection.cs │ │ │ ├── SubscriptionConnectionForShard.cs │ │ │ └── TcpConnectionOptions.cs │ │ ├── TimeSeries │ │ │ ├── BitsBuffer.cs │ │ │ ├── BitsBufferHeader.cs │ │ │ ├── SegmentHeader.cs │ │ │ ├── StatefulTimeStampValue.cs │ │ │ ├── TimeSeriesDeletedRangeEntry.cs │ │ │ ├── TimeSeriesPolicyRunner.cs │ │ │ ├── TimeSeriesReader.cs │ │ │ ├── TimeSeriesRollups.cs │ │ │ ├── TimeSeriesSegmentEntry.cs │ │ │ ├── TimeSeriesSliceHolder.cs │ │ │ ├── TimeSeriesStats.cs │ │ │ ├── TimeSeriesStorage.Sharding.cs │ │ │ ├── TimeSeriesStorage.cs │ │ │ ├── TimeSeriesValuesSegment.cs │ │ │ └── TimestampEncodingDetails.cs │ │ ├── Tombstone.cs │ │ ├── TombstoneCleaner.cs │ │ └── TransactionMerger │ │ │ ├── AbstractTransactionOperationsMerger.Recording.cs │ │ │ ├── AbstractTransactionOperationsMerger.cs │ │ │ ├── Commands │ │ │ ├── AdoptOrphanedRevisionsCommand.cs │ │ │ ├── DeleteDocumentCommand.cs │ │ │ ├── DeleteDocumentsCommand.cs │ │ │ ├── EnforceRevisionConfigurationCommand.cs │ │ │ ├── IRecordableCommand.cs │ │ │ ├── IReplayableCommandDto.cs │ │ │ ├── JsonPatchCommand.cs │ │ │ ├── MergedTransactionCommand.cs │ │ │ └── RevisionsScanningOperationCommand.cs │ │ │ └── DocumentsTransactionOperationsMerger.cs │ ├── EventListener │ │ ├── AbstractEventListener.cs │ │ ├── AbstractEventsHandler.cs │ │ ├── AllocationsEventListener.cs │ │ ├── AllocationsHandler.cs │ │ ├── ContentionEventsHandler.cs │ │ ├── ContentionEventsListener.cs │ │ ├── Event.cs │ │ ├── EventComparerByDuration.cs │ │ ├── EventListener.cs │ │ ├── EventListenerMode.cs │ │ ├── EventListenerToLog.cs │ │ ├── EventType.cs │ │ ├── EventsListener.cs │ │ ├── GcEventsHandler.cs │ │ ├── GcEventsListener.cs │ │ └── ThreadsHandler.cs │ ├── Exceptions │ │ ├── CriticalIndexingException.cs │ │ ├── ETL │ │ │ ├── ElasticSearch │ │ │ │ └── ElasticSearchLoadException.cs │ │ │ └── QueueEtl │ │ │ │ └── QueueLoadException.cs │ │ ├── FeaturesAvailabilityException.cs │ │ ├── IndexAnalyzerException.cs │ │ ├── IndexCorruptionException.cs │ │ ├── IndexOpenException.cs │ │ ├── IndexWriteException.cs │ │ ├── IndexWriterCreationException.cs │ │ ├── InvalidCommandTypeException.cs │ │ ├── JitHitInternalLimitsOnIndexingFunction.cs │ │ ├── MissingAttachmentException.cs │ │ ├── PeriodicBackup │ │ │ └── StorageException.cs │ │ ├── PersistConfigurationException.cs │ │ ├── RaftIndexWaitAggregateException.cs │ │ └── RecursiveTypeNotSupportedException.cs │ ├── Extensions │ │ ├── ClusterTopologyExtensions.cs │ │ ├── DictionaryExtensions.cs │ │ ├── ExpressionExtensions.cs │ │ ├── FrozenDictionaryExtensions.cs │ │ ├── HttpExtensions.cs │ │ ├── JintExtensions.cs │ │ ├── JsonSerializationExtensions.cs │ │ ├── MemoryExtensions.cs │ │ ├── RequestExecutorExtensions.cs │ │ └── StringExtensions.cs │ ├── Https │ │ ├── ExternalCertificateValidator.cs │ │ └── HttpsConnectionMiddleware.cs │ ├── Indexing │ │ ├── IndexOutputFilesSummary.cs │ │ ├── IndexTransactionCache.cs │ │ ├── LuceneCleaner.cs │ │ ├── LuceneVoronDirectory.cs │ │ ├── MmapStream.cs │ │ ├── TempFileCache.cs │ │ ├── VoronBufferedInput.cs │ │ ├── VoronIndexInput.cs │ │ ├── VoronIndexOutput.cs │ │ └── VoronState.cs │ ├── Integrations │ │ └── PostgreSQL │ │ │ ├── Commands │ │ │ └── EditPostgreSqlConfigurationCommand.cs │ │ │ ├── CsvToPg.cs │ │ │ ├── Exceptions │ │ │ ├── PgErrorException.cs │ │ │ ├── PgFatalException.cs │ │ │ └── PgTerminateReceivedException.cs │ │ │ ├── Handlers │ │ │ ├── PostgreSqlIntegrationHandler.cs │ │ │ ├── PostgreSqlServerStatus.cs │ │ │ ├── PostgreSqlUsernames.cs │ │ │ └── Processors │ │ │ │ ├── AbstractPostgreSqlIntegrationHandlerProcessor.cs │ │ │ │ ├── AbstractPostgreSqlIntegrationHandlerProcessorForAddUser.cs │ │ │ │ ├── AbstractPostgreSqlIntegrationHandlerProcessorForDeleteUser.cs │ │ │ │ ├── AbstractPostgreSqlIntegrationHandlerProcessorForGetUsernamesList.cs │ │ │ │ ├── AbstractPostgreSqlIntegrationHandlerProcessorForPostPostgreSqlConfiguration.cs │ │ │ │ ├── PostgreSqlIntegrationHandlerProcessorForAddUser.cs │ │ │ │ ├── PostgreSqlIntegrationHandlerProcessorForDeleteUser.cs │ │ │ │ ├── PostgreSqlIntegrationHandlerProcessorForGetServerStatus.cs │ │ │ │ ├── PostgreSqlIntegrationHandlerProcessorForGetUsernamesList.cs │ │ │ │ └── PostgreSqlIntegrationHandlerProcessorForPostPostgreSqlConfiguration.cs │ │ │ ├── HardcodedQuery.cs │ │ │ ├── Messages │ │ │ ├── Bind.cs │ │ │ ├── Close.cs │ │ │ ├── Describe.cs │ │ │ ├── Execute.cs │ │ │ ├── ExtendedProtocolMessage.cs │ │ │ ├── Flush.cs │ │ │ ├── IInitialMessage.cs │ │ │ ├── Message.cs │ │ │ ├── MessageBuilder.cs │ │ │ ├── MessageReader.cs │ │ │ ├── Parse.cs │ │ │ ├── PasswordMessage.cs │ │ │ ├── Query.cs │ │ │ ├── Sync.cs │ │ │ └── Terminate.cs │ │ │ ├── Npgsql │ │ │ ├── NpgsqlConfig.cs │ │ │ ├── current_setting_query.csv │ │ │ ├── npgsql_types_3.csv │ │ │ ├── npgsql_types_4.csv │ │ │ ├── npgsql_types_4_0_0.csv │ │ │ ├── npgsql_types_4_0_3.csv │ │ │ ├── npgsql_types_4_1_2.csv │ │ │ ├── npgsql_types_5.csv │ │ │ ├── types_query.csv │ │ │ ├── version_current_setting_query.csv │ │ │ └── version_query.csv │ │ │ ├── PgConfig.cs │ │ │ ├── PgErrorCodes.cs │ │ │ ├── PgQuery.cs │ │ │ ├── PgServer.cs │ │ │ ├── PgSession.cs │ │ │ ├── PgTransaction.cs │ │ │ ├── PowerBI │ │ │ ├── PowerBIAllCollectionsQuery.cs │ │ │ ├── PowerBIConfig.cs │ │ │ ├── PowerBIFetchQuery.cs │ │ │ ├── PowerBIPreviewQuery.cs │ │ │ ├── PowerBIQuery.cs │ │ │ ├── PowerBIRqlQuery.cs │ │ │ └── ReplaceColumnValue.cs │ │ │ ├── ProtocolVersion.cs │ │ │ ├── RqlQuery.cs │ │ │ ├── Sharding │ │ │ └── Handlers │ │ │ │ └── ShardedPostgreSqlIntegrationHandler.cs │ │ │ ├── StringExtensions.cs │ │ │ └── Types │ │ │ ├── PgBit.cs │ │ │ ├── PgBool.cs │ │ │ ├── PgBytea.cs │ │ │ ├── PgChar.cs │ │ │ ├── PgFloat4.cs │ │ │ ├── PgFloat8.cs │ │ │ ├── PgInt2.cs │ │ │ ├── PgInt4.cs │ │ │ ├── PgInt8.cs │ │ │ ├── PgInterval.cs │ │ │ ├── PgJson.cs │ │ │ ├── PgName.cs │ │ │ ├── PgOid.cs │ │ │ ├── PgText.cs │ │ │ ├── PgTimestamp.cs │ │ │ ├── PgTimestampTz.cs │ │ │ ├── PgType.cs │ │ │ ├── PgTypeOIDs.cs │ │ │ ├── PgUnknown.cs │ │ │ └── PgVarchar.cs │ ├── Json │ │ ├── BlittableJsonTextWriterExtensions.cs │ │ ├── BlittableJsonTraverser.cs │ │ ├── BlittableJsonTraverserHelper.cs │ │ ├── BlittableNumber.cs │ │ ├── Converters │ │ │ ├── BlittableJsonConverter.cs │ │ │ ├── BlittableJsonReaderArrayConverter.cs │ │ │ ├── CounterOperationConverter.cs │ │ │ ├── LazyStringValueJsonConverter.cs │ │ │ ├── RavenTypeJsonConverter.cs │ │ │ ├── SliceJsonConverter.cs │ │ │ └── StreamConverter.cs │ │ ├── JsonDeserializationServer.cs │ │ ├── JsonDeserializationValidator.cs │ │ ├── LazyStringValueReader.cs │ │ ├── Sync │ │ │ └── BlittableJsonTextWriterExtensions.cs │ │ └── TableValueReaderUtil.cs │ ├── Monitoring │ │ ├── MetricsProvider.cs │ │ ├── OpenTelemetry │ │ │ ├── Constants.cs │ │ │ ├── IMetricInstrument.cs │ │ │ ├── MetricsBase.cs │ │ │ ├── MetricsManager.cs │ │ │ └── ServerMetrics.cs │ │ ├── ServerLimitsMonitor.cs │ │ └── Snmp │ │ │ ├── Objects │ │ │ ├── Cluster │ │ │ │ ├── 3.1 │ │ │ │ │ ├── ClusterNodeState.cs │ │ │ │ │ └── ClusterNodeTag.cs │ │ │ │ └── 3.2 │ │ │ │ │ ├── ClusterId.cs │ │ │ │ │ ├── ClusterIndex.cs │ │ │ │ │ └── ClusterTerm.cs │ │ │ ├── Database │ │ │ │ ├── 5.1 │ │ │ │ │ ├── 5.1.11 │ │ │ │ │ │ ├── ActiveOngoingTasksBase.cs │ │ │ │ │ │ ├── OngoingTasksBase.cs │ │ │ │ │ │ ├── TotalNumberOfActiveBackupTasks.cs │ │ │ │ │ │ ├── TotalNumberOfActiveElasticSearchEtlTasks.cs │ │ │ │ │ │ ├── TotalNumberOfActiveExternalReplicationTasks.cs │ │ │ │ │ │ ├── TotalNumberOfActiveOlapEtlTasks.cs │ │ │ │ │ │ ├── TotalNumberOfActiveOngoingTasks.cs │ │ │ │ │ │ ├── TotalNumberOfActivePullReplicationAsSinkTasks.cs │ │ │ │ │ │ ├── TotalNumberOfActiveQueueEtlTasks.cs │ │ │ │ │ │ ├── TotalNumberOfActiveQueueSinkTasks.cs │ │ │ │ │ │ ├── TotalNumberOfActiveRavenEtlTasks.cs │ │ │ │ │ │ ├── TotalNumberOfActiveSqlEtlTasks.cs │ │ │ │ │ │ ├── TotalNumberOfActiveSubscriptionTasks.cs │ │ │ │ │ │ ├── TotalNumberOfBackupTasks.cs │ │ │ │ │ │ ├── TotalNumberOfElasticSearchEtlTasks.cs │ │ │ │ │ │ ├── TotalNumberOfExternalReplicationTasks.cs │ │ │ │ │ │ ├── TotalNumberOfOlapEtlTasks.cs │ │ │ │ │ │ ├── TotalNumberOfOngoingTasks.cs │ │ │ │ │ │ ├── TotalNumberOfPullReplicationAsSinkTasks.cs │ │ │ │ │ │ ├── TotalNumberOfQueueEtlTasks.cs │ │ │ │ │ │ ├── TotalNumberOfQueueSinkTasks.cs │ │ │ │ │ │ ├── TotalNumberOfRavenEtlTasks.cs │ │ │ │ │ │ ├── TotalNumberOfSqlEtlTasks.cs │ │ │ │ │ │ └── TotalNumberOfSubscriptionTasks.cs │ │ │ │ │ ├── 5.1.7 │ │ │ │ │ │ ├── TotalDatabaseCountOfStaleIndexes.cs │ │ │ │ │ │ ├── TotalDatabaseNumberOfErrorIndexes.cs │ │ │ │ │ │ ├── TotalDatabaseNumberOfFaultyIndexes.cs │ │ │ │ │ │ ├── TotalDatabaseNumberOfIndexes.cs │ │ │ │ │ │ └── TotalNumberOfIndexingErrors.cs │ │ │ │ │ ├── 5.1.8 │ │ │ │ │ │ ├── TotalDatabaseMapIndexIndexedPerSecond.cs │ │ │ │ │ │ ├── TotalDatabaseMapReduceIndexMappedPerSecond.cs │ │ │ │ │ │ └── TotalDatabaseMapReduceIndexReducedPerSecond.cs │ │ │ │ │ ├── 5.1.9 │ │ │ │ │ │ ├── TotalDatabaseDataWrittenPerSecond.cs │ │ │ │ │ │ └── TotalDatabaseWritesPerSecond.cs │ │ │ │ │ ├── DatabaseBase.cs │ │ │ │ │ ├── DatabaseDisabledCount.cs │ │ │ │ │ ├── DatabaseEncryptedCount.cs │ │ │ │ │ ├── DatabaseFaultedCount.cs │ │ │ │ │ ├── DatabaseLoadedCount.cs │ │ │ │ │ ├── DatabaseNodeCount.cs │ │ │ │ │ ├── DatabaseOldestBackup.cs │ │ │ │ │ └── DatabaseTotalCount.cs │ │ │ │ └── 5.2.X │ │ │ │ │ ├── 1 │ │ │ │ │ ├── DatabaseAlerts.cs │ │ │ │ │ ├── DatabaseCountOfAttachments.cs │ │ │ │ │ ├── DatabaseCountOfDocuments.cs │ │ │ │ │ ├── DatabaseCountOfIndexes.cs │ │ │ │ │ ├── DatabaseCountOfRevisionDocuments.cs │ │ │ │ │ ├── DatabaseCountOfStaleIndexes.cs │ │ │ │ │ ├── DatabaseCountOfUniqueAttachments.cs │ │ │ │ │ ├── DatabaseId.cs │ │ │ │ │ ├── DatabaseIndexingErrors.cs │ │ │ │ │ ├── DatabaseLoaded.cs │ │ │ │ │ ├── DatabaseName.cs │ │ │ │ │ ├── DatabasePerformanceHints.cs │ │ │ │ │ ├── DatabaseRehabs.cs │ │ │ │ │ └── DatabaseUpTime.cs │ │ │ │ │ ├── 2 │ │ │ │ │ ├── DatabaseDocumentsStorageAllocatedSize.cs │ │ │ │ │ ├── DatabaseDocumentsStorageUsedSize.cs │ │ │ │ │ ├── DatabaseIndexStorageAllocatedSize.cs │ │ │ │ │ ├── DatabaseIndexStorageUsedSize.cs │ │ │ │ │ ├── DatabaseStorageDiskIosReadOperations.cs │ │ │ │ │ ├── DatabaseStorageDiskIosWriteOperations.cs │ │ │ │ │ ├── DatabaseStorageDiskQueueLength.cs │ │ │ │ │ ├── DatabaseStorageDiskReadThroughput.cs │ │ │ │ │ ├── DatabaseStorageDiskRemainingSpace.cs │ │ │ │ │ ├── DatabaseStorageDiskWriteThroughput.cs │ │ │ │ │ └── DatabaseTotalStorageSize.cs │ │ │ │ │ ├── 3 │ │ │ │ │ ├── DatabaseAverageRequestTime.cs │ │ │ │ │ ├── DatabaseDocPutsPerSecond.cs │ │ │ │ │ ├── DatabaseMapIndexIndexedPerSecond.cs │ │ │ │ │ ├── DatabaseMapReduceIndexMappedPerSecond.cs │ │ │ │ │ ├── DatabaseMapReduceIndexReducedPerSecond.cs │ │ │ │ │ ├── DatabaseRequestsCount.cs │ │ │ │ │ └── DatabaseRequestsPerSecond.cs │ │ │ │ │ ├── 4 │ │ │ │ │ ├── DatabaseIndexErrors.cs │ │ │ │ │ ├── DatabaseIndexExists.cs │ │ │ │ │ ├── DatabaseIndexIsInvalid.cs │ │ │ │ │ ├── DatabaseIndexLastIndexingTime.cs │ │ │ │ │ ├── DatabaseIndexLastQueryTime.cs │ │ │ │ │ ├── DatabaseIndexLockMode.cs │ │ │ │ │ ├── DatabaseIndexMapsPerSec.cs │ │ │ │ │ ├── DatabaseIndexName.cs │ │ │ │ │ ├── DatabaseIndexPriority.cs │ │ │ │ │ ├── DatabaseIndexReducesPerSec.cs │ │ │ │ │ ├── DatabaseIndexState.cs │ │ │ │ │ ├── DatabaseIndexStatus.cs │ │ │ │ │ ├── DatabaseIndexTimeSinceLastIndexing.cs │ │ │ │ │ ├── DatabaseIndexTimeSinceLastQuery.cs │ │ │ │ │ └── DatabaseIndexType.cs │ │ │ │ │ ├── 5 │ │ │ │ │ ├── DatabaseNumberOfAutoIndexes.cs │ │ │ │ │ ├── DatabaseNumberOfDisabledIndexes.cs │ │ │ │ │ ├── DatabaseNumberOfErrorIndexes.cs │ │ │ │ │ ├── DatabaseNumberOfFaultyIndexes.cs │ │ │ │ │ ├── DatabaseNumberOfIdleIndexes.cs │ │ │ │ │ ├── DatabaseNumberOfIndexes.cs │ │ │ │ │ └── DatabaseNumberOfStaticIndexes.cs │ │ │ │ │ └── 6 │ │ │ │ │ ├── DatabaseDataWrittenPerSecond.cs │ │ │ │ │ └── DatabaseWritesPerSecond.cs │ │ │ ├── DatabaseIndexScalarObjectBase.cs │ │ │ ├── DatabaseScalarObjectBase.cs │ │ │ ├── ScalarObjectBase.cs │ │ │ └── Server │ │ │ │ ├── 1.1 │ │ │ │ ├── ServerPublicTcpUrl.cs │ │ │ │ ├── ServerPublicUrl.cs │ │ │ │ ├── ServerTcpUrl.cs │ │ │ │ └── ServerUrl.cs │ │ │ │ ├── 1.10 │ │ │ │ ├── ServerStorageDiskIosReadOperations.cs │ │ │ │ ├── ServerStorageDiskIosWriteOperations.cs │ │ │ │ ├── ServerStorageDiskQueueLength.cs │ │ │ │ ├── ServerStorageDiskReadThroughput.cs │ │ │ │ ├── ServerStorageDiskRemainingSpace.cs │ │ │ │ ├── ServerStorageDiskRemainingSpacePercentage.cs │ │ │ │ ├── ServerStorageDiskWriteThroughput.cs │ │ │ │ ├── ServerStorageTotalSize.cs │ │ │ │ └── ServerStorageUsedSize.cs │ │ │ │ ├── 1.11 │ │ │ │ ├── CertificateExpiredCount.cs │ │ │ │ ├── CertificateExpiringCount.cs │ │ │ │ ├── ServerCertificateExpiration.cs │ │ │ │ ├── ServerCertificateExpirationLeft.cs │ │ │ │ ├── WellKnownAdminCertificates.cs │ │ │ │ └── WellKnownAdminIssuers.cs │ │ │ │ ├── 1.12 │ │ │ │ ├── MachineAssignedProcessorCount.cs │ │ │ │ └── MachineProcessorCount.cs │ │ │ │ ├── 1.13 │ │ │ │ ├── ServerBackupsCurrent.cs │ │ │ │ └── ServerBackupsMax.cs │ │ │ │ ├── 1.14 │ │ │ │ ├── ThreadPoolAvailableCompletionPortThreads.cs │ │ │ │ └── ThreadPoolAvailableWorkerThreads.cs │ │ │ │ ├── 1.15 │ │ │ │ └── TcpActiveConnections.cs │ │ │ │ ├── 1.16 │ │ │ │ └── FeatureAnyExperimental.cs │ │ │ │ ├── 1.17 │ │ │ │ └── ServerLimits.cs │ │ │ │ ├── 1.18 │ │ │ │ └── MonitorLockContentionCount.cs │ │ │ │ ├── 1.2 │ │ │ │ ├── ServerFullVersion.cs │ │ │ │ └── ServerVersion.cs │ │ │ │ ├── 1.5 │ │ │ │ ├── CpuCreditsAlertRaised.cs │ │ │ │ ├── CpuCreditsBackgroundTasksAlertRaised.cs │ │ │ │ ├── CpuCreditsBase.cs │ │ │ │ ├── CpuCreditsCurrentConsumption.cs │ │ │ │ ├── CpuCreditsFailoverAlertRaised.cs │ │ │ │ ├── CpuCreditsMax.cs │ │ │ │ ├── CpuCreditsRemaining.cs │ │ │ │ ├── IoWait.cs │ │ │ │ ├── MachineCpu.cs │ │ │ │ └── ProcessCpu.cs │ │ │ │ ├── 1.6 │ │ │ │ ├── 1.6.11 │ │ │ │ │ ├── ServerGcBase.cs │ │ │ │ │ ├── ServerGcCompacted.cs │ │ │ │ │ ├── ServerGcConcurrent.cs │ │ │ │ │ ├── ServerGcFinalizationPendingCount.cs │ │ │ │ │ ├── ServerGcFragmented.cs │ │ │ │ │ ├── ServerGcGeneration.cs │ │ │ │ │ ├── ServerGcHeapSize.cs │ │ │ │ │ ├── ServerGcHighMemoryLoadThreshold.cs │ │ │ │ │ ├── ServerGcIndex.cs │ │ │ │ │ ├── ServerGcLohSize.cs │ │ │ │ │ ├── ServerGcMemoryLoad.cs │ │ │ │ │ ├── ServerGcPauseDurations1.cs │ │ │ │ │ ├── ServerGcPauseDurations2.cs │ │ │ │ │ ├── ServerGcPauseDurationsBase.cs │ │ │ │ │ ├── ServerGcPauseTimePercentage.cs │ │ │ │ │ ├── ServerGcPinnedObjectsCount.cs │ │ │ │ │ ├── ServerGcPromoted.cs │ │ │ │ │ ├── ServerGcTotalAvailableMemory.cs │ │ │ │ │ └── ServerGcTotalCommitted.cs │ │ │ │ ├── ServerAvailableMemoryForProcessing.cs │ │ │ │ ├── ServerDirtyMemory.cs │ │ │ │ ├── ServerEncryptionBuffersMemoryInPool.cs │ │ │ │ ├── ServerEncryptionBuffersMemoryInUse.cs │ │ │ │ ├── ServerLowMemoryFlag.cs │ │ │ │ ├── ServerManagedMemory.cs │ │ │ │ ├── ServerMemInfo.cs │ │ │ │ ├── ServerTotalMemory.cs │ │ │ │ ├── ServerTotalSwapSize.cs │ │ │ │ ├── ServerTotalSwapUsage.cs │ │ │ │ ├── ServerUnmanagedMemory.cs │ │ │ │ └── ServerWorkingSetSwapUsage.cs │ │ │ │ ├── 1.7 │ │ │ │ ├── ServerConcurrentRequests.cs │ │ │ │ ├── ServerRequestAverageDuration.cs │ │ │ │ ├── ServerRequestsPerSecond.cs │ │ │ │ └── ServerTotalRequests.cs │ │ │ │ ├── 1.9 │ │ │ │ ├── ServerLicenseExpiration.cs │ │ │ │ ├── ServerLicenseExpirationLeft.cs │ │ │ │ ├── ServerLicenseMaxCpuCores.cs │ │ │ │ ├── ServerLicenseType.cs │ │ │ │ └── ServerLicenseUtilizedCpuCores.cs │ │ │ │ ├── ServerLastAuthorizedNonClusterAdminRequestTime.cs │ │ │ │ ├── ServerLastRequestTime.cs │ │ │ │ ├── ServerPid.cs │ │ │ │ └── ServerUpTime.cs │ │ │ ├── Providers │ │ │ ├── BouncyCastleAESPrivacyProvider.cs │ │ │ ├── BouncyCastleAESPrivacyProviderBase.cs │ │ │ └── BouncyCastleDESPrivacyProvider.cs │ │ │ ├── SnmpAuthenticationProtocol.cs │ │ │ ├── SnmpDatabase.cs │ │ │ ├── SnmpEnumIndexAttribute.cs │ │ │ ├── SnmpHandler.cs │ │ │ ├── SnmpIndexAttribute.cs │ │ │ ├── SnmpMibWriter.cs │ │ │ ├── SnmpOids.cs │ │ │ ├── SnmpPrivacyProtocol.cs │ │ │ ├── SnmpReturnTypeAttribute.cs │ │ │ ├── SnmpValuesHelper.cs │ │ │ ├── SnmpVersion.cs │ │ │ ├── SnmpWatcher.cs │ │ │ └── Templates │ │ │ └── zabbix_ravendb_template.xml │ ├── NotificationCenter │ │ ├── AbstractDatabaseNotificationCenter.cs │ │ ├── AbstractNotificationCenter.cs │ │ ├── BackgroundWork │ │ │ ├── AbstractDatabaseStatsSender.cs │ │ │ ├── DatabaseStatsSender.cs │ │ │ ├── NotificationCenterDatabaseStats.cs │ │ │ └── PostponedNotificationsSender.cs │ │ ├── Commands │ │ │ ├── DismissNotificationCommand.cs │ │ │ └── PostponeNotificationCommand.cs │ │ ├── ConflictRevisionsExceeded.cs │ │ ├── ConnectedWatcher.cs │ │ ├── DatabaseNotificationCenter.cs │ │ ├── EtlNotifications.cs │ │ ├── Handlers │ │ │ ├── ClusterDashboardConnection.cs │ │ │ ├── ClusterDashboardHandler.cs │ │ │ ├── DatabaseNotificationCenterHandler.cs │ │ │ ├── Processors │ │ │ │ ├── AbstractDatabaseNotificationCenterHandlerProcessorForDismiss.cs │ │ │ │ ├── AbstractDatabaseNotificationCenterHandlerProcessorForPostpone.cs │ │ │ │ ├── AbstractDatabaseNotificationCenterHandlerProcessorForWatch.cs │ │ │ │ ├── DatabaseNotificationCenterHandlerProcessorForDismiss.cs │ │ │ │ ├── DatabaseNotificationCenterHandlerProcessorForPostpone.cs │ │ │ │ ├── DatabaseNotificationCenterHandlerProcessorForStats.cs │ │ │ │ └── DatabaseNotificationCenterHandlerProcessorForWatch.cs │ │ │ ├── ProxyWebSocketConnection.cs │ │ │ ├── ServerNotificationCenterHandler.cs │ │ │ └── ThreadsInfoHandler.cs │ │ ├── IWebsocketWriter.cs │ │ ├── Indexing.cs │ │ ├── NotificationCenterOptions.cs │ │ ├── NotificationCenterWebsocketWriter.cs │ │ ├── NotificationTableValue.cs │ │ ├── Notifications │ │ │ ├── AlertRaised.cs │ │ │ ├── AlertType.cs │ │ │ ├── DatabaseStatsChanged.cs │ │ │ ├── Details │ │ │ │ ├── ComplexFieldsWarning.cs │ │ │ │ ├── ConflictPerformanceDetails.cs │ │ │ │ ├── CpuCreditsExhaustionWarning.cs │ │ │ │ ├── EtlErrorInfo.cs │ │ │ │ ├── EtlErrorsDetails.cs │ │ │ │ ├── ExceptionDetails.cs │ │ │ │ ├── HugeDocumentsDetails.cs │ │ │ │ ├── INotificationDetails.cs │ │ │ │ ├── IndexingReferenceLoadWarning.cs │ │ │ │ ├── LicenseLimitWarning.cs │ │ │ │ ├── MessageDetails.cs │ │ │ │ ├── MismatchedReferencesLoadWarning.cs │ │ │ │ ├── NewVersionAvailableDetails.cs │ │ │ │ ├── PagingOperationType.cs │ │ │ │ ├── PagingPerformanceDetails.cs │ │ │ │ ├── QueueSinkErrorInfo.cs │ │ │ │ ├── QueueSinkErrorsDetails.cs │ │ │ │ ├── RequestLatencyDetail.cs │ │ │ │ ├── ServerLimitsDetails.cs │ │ │ │ ├── SlowIoDetails.cs │ │ │ │ ├── SlowSqlDetails.cs │ │ │ │ ├── SlowSqlStatementInfo.cs │ │ │ │ └── WarnIndexOutputsPerDocument.cs │ │ │ ├── Notification.cs │ │ │ ├── NotificationSeverity.cs │ │ │ ├── NotificationType.cs │ │ │ ├── NotificationUpdateType.cs │ │ │ ├── NotificationUpdated.cs │ │ │ ├── OperationChanged.cs │ │ │ ├── PerformanceHint.cs │ │ │ ├── PerformanceHintType.cs │ │ │ └── Server │ │ │ │ ├── ClusterTopologyChanged.cs │ │ │ │ ├── DatabaseChangeType.cs │ │ │ │ └── DatabaseChanged.cs │ │ ├── NotificationsBase.cs │ │ ├── NotificationsStorage.cs │ │ ├── OutOfMemoryNotifications.cs │ │ ├── Paging.cs │ │ ├── QueueSinkNotifications.cs │ │ ├── RequestLatency.cs │ │ ├── RequestTimeTracker.cs │ │ ├── ServerNotificationCenter.cs │ │ ├── SlowWriteNotifications.cs │ │ └── TombstoneNotifications.cs │ ├── Platform │ │ └── Posix │ │ │ ├── LimitsReader.cs │ │ │ └── MemInfoReader.cs │ ├── Program.cs │ ├── Properties │ │ ├── Settings │ │ │ ├── settings.docker.posix.json │ │ │ ├── settings.docker.windows.json │ │ │ ├── settings.posix.CI.json │ │ │ ├── settings.posix.json │ │ │ └── settings.windows.json │ │ ├── VersionInfo.cs │ │ └── launchSettings.json │ ├── Rachis │ │ ├── AppendEntries.cs │ │ ├── AppendEntriesResponse.cs │ │ ├── BlittableResultWriter.cs │ │ ├── Candidate.cs │ │ ├── CandidateAmbassador.cs │ │ ├── ClusterTransactionWaiter.cs │ │ ├── Commands │ │ │ ├── CandidateCastVoteInTermCommand.cs │ │ │ ├── CastVoteInTermCommand.cs │ │ │ ├── DeleteTopologyCommand.cs │ │ │ ├── ElectorCastVoteInTermCommand.cs │ │ │ ├── ElectorCastVoteInTermWithShouldGrantVoteCommand.cs │ │ │ ├── Follower.FollowerReadAndCommitSnapshotCommand.cs │ │ │ ├── FollowerApplyCommand.cs │ │ │ ├── HardResetToNewClusterCommand.cs │ │ │ ├── HardResetToPassiveCommand.cs │ │ │ ├── Leader.LeaderModifyTopologyCommand.cs │ │ │ ├── Leader.RachisMergedCommand.cs │ │ │ ├── LeaderApplyCommand.cs │ │ │ ├── LowestIndexUpdateCommand.cs │ │ │ ├── RemoveEntryFromRaftLogCommand.cs │ │ │ ├── SetNewStateCommand.cs │ │ │ ├── SwitchToSingleLeaderCommand.cs │ │ │ └── UpdateNodeTagCommand.cs │ │ ├── Elector.cs │ │ ├── Exceptions.cs │ │ ├── Follower.cs │ │ ├── FollowerAmbassador.cs │ │ ├── InitialMessageType.cs │ │ ├── InstallSnapshot.cs │ │ ├── Json │ │ │ └── Sync │ │ │ │ └── RachisBlittableJsonTextWriter.cs │ │ ├── JsonDeserializationRachis.cs │ │ ├── Leader.cs │ │ ├── LogSummary.cs │ │ ├── Negotiation.cs │ │ ├── PutRaftCommand.cs │ │ ├── RachisConnection.cs │ │ ├── RachisConsensus.Debug.cs │ │ ├── RachisConsensus.cs │ │ ├── RachisEntryFlags.cs │ │ ├── RachisHello.cs │ │ ├── RachisLogHistory.cs │ │ ├── RachisStateMachine.cs │ │ ├── RachisVersionValidation.cs │ │ ├── Remote │ │ │ ├── RemoteConnection.cs │ │ │ └── SnapshotReader.cs │ │ ├── RequestVote.cs │ │ └── TimeoutEvent.cs │ ├── Raven.Server.csproj │ ├── RavenServer.cs │ ├── RavenServerStartup.cs │ ├── RedirectServerStartup.cs │ ├── Routing │ │ ├── CorsMode.cs │ │ ├── RavenActionAttribute.cs │ │ ├── RequestRouter.cs │ │ ├── RouteInformation.cs │ │ ├── RouteScanner.cs │ │ └── Trie.cs │ ├── ServerWide │ │ ├── AbstractRaftIndexNotifications.cs │ │ ├── BackgroundTasks │ │ │ └── LatestVersionCheck.cs │ │ ├── CertificateReplacement.cs │ │ ├── ClusterChanges.cs │ │ ├── ClusterCommandsVersionManager.cs │ │ ├── ClusterNodesVersionMismatchException.cs │ │ ├── ClusterStateMachine.Configuration.cs │ │ ├── ClusterStateMachine.License.cs │ │ ├── ClusterStateMachine.cs │ │ ├── ClusterTransactionResult.cs │ │ ├── ClusterValidator.cs │ │ ├── Commands │ │ │ ├── AddDatabaseCommand.cs │ │ │ ├── AddOrUpdateCompareExchangeBatchCommand.cs │ │ │ ├── Analyzers │ │ │ │ ├── DeleteAnalyzerCommand.cs │ │ │ │ ├── DeleteServerWideAnalyzerCommand.cs │ │ │ │ ├── PutAnalyzersCommand.cs │ │ │ │ └── PutServerWideAnalyzerCommand.cs │ │ │ ├── CleanCompareExchangeTombstonesCommand.cs │ │ │ ├── CleanUpClusterStateCommand.cs │ │ │ ├── ClusterTransactionCommand.cs │ │ │ ├── CommandBase.cs │ │ │ ├── CompareExchangeCommands.cs │ │ │ ├── ConnectionStrings │ │ │ │ ├── PutConnectionStringCommand.cs │ │ │ │ └── RemoveConnectionStringCommand.cs │ │ │ ├── DelayBackupCommand.cs │ │ │ ├── DeleteCertificateCollectionFromClusterCommand.cs │ │ │ ├── DeleteCertificateFromClusterCommand.cs │ │ │ ├── DeleteDatabaseCommand.cs │ │ │ ├── DeleteExpiredCompareExchangeCommand.cs │ │ │ ├── DeleteMultipleValuesCommand.cs │ │ │ ├── DeleteOngoingTaskCommand.cs │ │ │ ├── DeleteServerWideBackupConfigurationCommand.cs │ │ │ ├── DeleteServerWideTaskCommand.cs │ │ │ ├── DeleteValueCommand.cs │ │ │ ├── ETL │ │ │ │ ├── AddEtlCommand.cs │ │ │ │ ├── DeleteEtlProcessStateCommand.cs │ │ │ │ ├── UpdateEtlCommand.cs │ │ │ │ └── UpdateEtlProcessStateCommand.cs │ │ │ ├── EditDataArchivalCommand.cs │ │ │ ├── EditDatabaseClientConfigurationCommand.cs │ │ │ ├── EditDocumentsCompressionCommand.cs │ │ │ ├── EditExpirationCommand.cs │ │ │ ├── EditLockModeCommand.cs │ │ │ ├── EditRefreshCommand.cs │ │ │ ├── EditRevisionsConfigurationCommand.cs │ │ │ ├── EditRevisionsForConflictsConfigurationCommand.cs │ │ │ ├── EditTimeSeriesConfigurationCommand.cs │ │ │ ├── GetTcpInfoForReplicationCommand.cs │ │ │ ├── IBlittableResultCommand.cs │ │ │ ├── IncrementClusterIdentitiesBatchCommand.cs │ │ │ ├── IncrementClusterIdentityCommand.cs │ │ │ ├── Indexes │ │ │ │ ├── DeleteIndexCommand.cs │ │ │ │ ├── DeleteIndexHistoryCommand.cs │ │ │ │ ├── PutAutoIndexCommand.cs │ │ │ │ ├── PutIndexCommand.cs │ │ │ │ ├── PutIndexHistoryCommand.cs │ │ │ │ ├── PutIndexesCommand.cs │ │ │ │ ├── PutRollingIndexCommand.cs │ │ │ │ ├── SetIndexLockCommand.cs │ │ │ │ ├── SetIndexPriorityCommand.cs │ │ │ │ └── SetIndexStateCommand.cs │ │ │ ├── InstallUpdatedServerCertificateCommand.cs │ │ │ ├── ModifyConflictSolverCommand.cs │ │ │ ├── Monitoring │ │ │ │ └── Snmp │ │ │ │ │ ├── UpdateSnmpDatabaseIndexesMappingCommand.cs │ │ │ │ │ └── UpdateSnmpDatabasesMappingCommand.cs │ │ │ ├── PeriodicBackup │ │ │ │ ├── UpdatePeriodicBackupCommand.cs │ │ │ │ ├── UpdatePeriodicBackupStatusCommand.cs │ │ │ │ └── UpdateResponsibleNodeForTasksCommand.cs │ │ │ ├── PromoteDatabaseNodeCommand.cs │ │ │ ├── PutCertificateCommand.cs │ │ │ ├── PutCertificateWithSamePinningHashCommand.cs │ │ │ ├── PutClientConfigurationCommand.cs │ │ │ ├── PutDatabaseClientConfigurationCommand.cs │ │ │ ├── PutDatabaseSettingsCommand.cs │ │ │ ├── PutDatabaseStudioConfigurationCommand.cs │ │ │ ├── PutLicenseCommand.cs │ │ │ ├── PutLicenseLimitsCommand.cs │ │ │ ├── PutServerWideBackupConfigurationCommand.cs │ │ │ ├── PutServerWideExternalReplicationCommand.cs │ │ │ ├── PutServerWideStudioConfigurationCommand.cs │ │ │ ├── PutValueCommand.cs │ │ │ ├── QueueSink │ │ │ │ ├── AddQueueSinkCommand.cs │ │ │ │ ├── RemoveQueueSinkProcessStateCommand.cs │ │ │ │ ├── UpdateQueueSinkCommand.cs │ │ │ │ └── UpdateQueueSinkProcessStateCommand.cs │ │ │ ├── RegisterReplicationHubAccessCommand.cs │ │ │ ├── RemoveNodeFromClusterCommand.cs │ │ │ ├── RemoveNodeFromDatabaseCommand.cs │ │ │ ├── Sharding │ │ │ │ ├── AddPrefixedShardingSettingCommand.cs │ │ │ │ ├── CreateNewShardCommand.cs │ │ │ │ ├── DeletePrefixedShardingSettingCommand.cs │ │ │ │ ├── DestinationMigrationConfirmCommand.cs │ │ │ │ ├── PutShardedSubscriptionCommand.cs │ │ │ │ ├── ShardedUpdateExternalReplicationStateCommand.cs │ │ │ │ ├── SourceMigrationCleanupCommand.cs │ │ │ │ ├── SourceMigrationSendCompletedCommand.cs │ │ │ │ ├── StartBucketMigrationCommand.cs │ │ │ │ └── UpdatePrefixedShardingSettingCommand.cs │ │ │ ├── Sorters │ │ │ │ ├── DeleteServerWideSorterCommand.cs │ │ │ │ ├── DeleteSorterCommand.cs │ │ │ │ ├── PutServerWideSorterCommand.cs │ │ │ │ └── PutSortersCommand.cs │ │ │ ├── Subscriptions │ │ │ │ ├── AcknowledgeSubscriptionBatchCommand.cs │ │ │ │ ├── DeleteSubscriptionCommand.cs │ │ │ │ ├── PutShardedSubscriptionBatchCommand.cs │ │ │ │ ├── PutSubscriptionBatchCommand.cs │ │ │ │ ├── PutSubscriptionBatchCommandBase.cs │ │ │ │ ├── PutSubscriptionCommand.cs │ │ │ │ ├── RecordBatchSubscriptionDocumentsCommand.cs │ │ │ │ ├── ToggleSubscriptionStateCommand.cs │ │ │ │ └── UpdateSubscriptionClientConnectionTime.cs │ │ │ ├── ToggleDatabasesStateCommand.cs │ │ │ ├── ToggleServerWideTaskStateCommand.cs │ │ │ ├── ToggleTaskStateCommand.cs │ │ │ ├── UpdateClusterIdentityCommand.cs │ │ │ ├── UpdateDatabaseCommand.cs │ │ │ ├── UpdateExternalReplicationCommand.cs │ │ │ ├── UpdateExternalReplicationStateCommand.cs │ │ │ ├── UpdateLicenseLimitsCommand.cs │ │ │ ├── UpdatePullReplicationAsHubCommand.cs │ │ │ ├── UpdatePullReplicationAsSinkCommand.cs │ │ │ ├── UpdateServerPublishedUrlsCommand.cs │ │ │ ├── UpdateTopologyCommand.cs │ │ │ ├── UpdateUnusedDatabaseIdsCommand.cs │ │ │ ├── UpdateValueCommand.cs │ │ │ └── UpdateValueForDatabaseCommand.cs │ │ ├── CompareExchangeChange.cs │ │ ├── CompareExchangeExpirationStorage.cs │ │ ├── CompareExchangeKey.cs │ │ ├── Context │ │ │ ├── ClusterContextPool.cs │ │ │ ├── ClusterOperationContext.cs │ │ │ ├── DocumentTransactionCache.cs │ │ │ ├── DocumentsContextPool.cs │ │ │ ├── DocumentsOperationContext.cs │ │ │ ├── IChangeVectorOperationContext.cs │ │ │ ├── IDocumentsContextPool.cs │ │ │ ├── IMemoryContextPool.cs │ │ │ ├── ITransactionContextPool.cs │ │ │ ├── TransactionContextPool.cs │ │ │ └── TransactionOperationContext.cs │ │ ├── DebugInfoPackageUtils.cs │ │ ├── DeferrableTimeout.cs │ │ ├── JsonDeserializationCluster.cs │ │ ├── LocalEndpointClient.cs │ │ ├── Maintenance │ │ │ ├── ClusterMaintenanceConnection.cs │ │ │ ├── ClusterMaintenanceSupervisor.cs │ │ │ ├── ClusterMaintenanceWorker.cs │ │ │ ├── ClusterNodeStatusReport.cs │ │ │ ├── ClusterObserver.Backup.cs │ │ │ ├── ClusterObserver.cs │ │ │ ├── ClusterObserverDecisions.cs │ │ │ ├── ClusterObserverLogEntry.cs │ │ │ ├── DatabaseTopologyUpdater.cs │ │ │ ├── ObserverLogger.cs │ │ │ └── Sharding │ │ │ │ ├── BucketsMigrator.cs │ │ │ │ ├── OrchestratorTopologyUpdater.cs │ │ │ │ └── ShardMigrationResult.cs │ │ ├── Memory │ │ │ ├── MemoryUsageGuard.cs │ │ │ └── ProcessMemoryUsage.cs │ │ ├── OperationCancelToken.cs │ │ ├── RachisLogIndexNotifications.cs │ │ ├── RavenTransaction.cs │ │ ├── RawDatabaseRecord.cs │ │ ├── ResourceType.cs │ │ ├── SecretProtection.cs │ │ ├── ServerMetricCacher.cs │ │ ├── ServerStatistics.cs │ │ ├── ServerStore.cs │ │ ├── ServerVersion.cs │ │ ├── Sharding │ │ │ ├── PrefixSettingComparer.cs │ │ │ └── RawShardingConfiguration.cs │ │ ├── ShardingStore.cs │ │ ├── SodiumSubKeyId.cs │ │ ├── SubscriptionsClusterStorage.cs │ │ ├── Tcp │ │ │ └── Sync │ │ │ │ ├── TcpNegotiateParameters.cs │ │ │ │ └── TcpNegotiationSyncExtensions.cs │ │ ├── TempCryptoStream.cs │ │ ├── TransactionMerger │ │ │ └── ClusterTransactionOperationsMerger.cs │ │ ├── TwoFactor.cs │ │ └── UnmanagedBuffersPoolWithLowMemoryHandling.cs │ ├── Smuggler │ │ ├── Documents │ │ │ ├── Actions │ │ │ │ ├── AbstractDatabaseCompareExchangeActions.cs │ │ │ │ ├── DatabaseCompareExchangeActions.cs │ │ │ │ ├── DatabaseIndexActions.cs │ │ │ │ ├── DatabaseKeyValueActions.cs │ │ │ │ ├── DatabaseRecordActions.cs │ │ │ │ ├── DatabaseReplicationHubCertificateActions.cs │ │ │ │ ├── DatabaseSubscriptionActions.cs │ │ │ │ ├── DatabaseSubscriptionActionsBase.cs │ │ │ │ └── ShardedDatabaseSubscriptionActions.cs │ │ │ ├── CsvStreamSource.cs │ │ │ ├── Data │ │ │ │ ├── DatabaseSmugglerOptionsServerSide.cs │ │ │ │ ├── ISmugglerDestination.cs │ │ │ │ ├── ISmugglerSource.cs │ │ │ │ └── LegacyIndexDefinition.cs │ │ │ ├── DatabaseDestination.cs │ │ │ ├── DatabaseSmuggler.cs │ │ │ ├── DatabaseSource.cs │ │ │ ├── Handlers │ │ │ │ └── SmugglerHandler.cs │ │ │ ├── Iteration │ │ │ │ ├── CollectionAwareIterationState.cs │ │ │ │ ├── CountersIterationState.cs │ │ │ │ ├── DocumentConflictsIterationState.cs │ │ │ │ ├── DocumentsIterationState.cs │ │ │ │ ├── TimeSeriesDeletedRangeIterationState.cs │ │ │ │ ├── TimeSeriesIterationState.cs │ │ │ │ └── TombstonesIterationState.cs │ │ │ ├── MultiShardedDestination.cs │ │ │ ├── OrchestratorStreamSource.cs │ │ │ ├── Processors │ │ │ │ ├── BuildVersion.cs │ │ │ │ └── IndexProcessor.cs │ │ │ ├── ShardedDatabaseSmuggler.cs │ │ │ ├── ShardedDatabaseSource.cs │ │ │ ├── SingleShardDatabaseSmuggler.cs │ │ │ ├── SmugglerBase.cs │ │ │ ├── SmugglerDocumentType.cs │ │ │ ├── SmugglerPatcher.cs │ │ │ ├── SnapshotDatabaseDestination.cs │ │ │ ├── StreamDestination.cs │ │ │ └── StreamSource.cs │ │ ├── Migration │ │ │ ├── AbstractLegacyMigrator.cs │ │ │ ├── AbstractMigrator.cs │ │ │ ├── ApiKey │ │ │ │ ├── Authenticator.cs │ │ │ │ ├── CryptoTransformExtensions.cs │ │ │ │ ├── DefaultEncryptor.cs │ │ │ │ ├── Encryptor.cs │ │ │ │ ├── EncryptorBase.cs │ │ │ │ ├── ErrorResponseException.cs │ │ │ │ ├── FipsEncryptor.cs │ │ │ │ ├── HashEncryptorBase.cs │ │ │ │ ├── HttpResponseHeadersExtensions.cs │ │ │ │ ├── IAsymmetricalEncryptor.cs │ │ │ │ ├── IEncryptor.cs │ │ │ │ ├── IHashEncryptor.cs │ │ │ │ ├── ISymmetricalEncryptor.cs │ │ │ │ ├── MD5Core.cs │ │ │ │ ├── OAuthHelper.cs │ │ │ │ ├── TaskExtensions.cs │ │ │ │ └── WebResponseExtensions.cs │ │ │ ├── ArrayStream.cs │ │ │ ├── BuildInfo.cs │ │ │ ├── ExportData.cs │ │ │ ├── Importer.cs │ │ │ ├── ItemType.cs │ │ │ ├── LastEtagsInfo.cs │ │ │ ├── MajorVersion.cs │ │ │ ├── MigratedServerUrls.cs │ │ │ ├── MigrationConfiguration.cs │ │ │ ├── Migrator.cs │ │ │ ├── MigratorOptions.cs │ │ │ ├── Migrator_V2.cs │ │ │ ├── Migrator_V3.cs │ │ │ └── SmugglerDatabaseOptions.cs │ │ └── MultipartRequestHelper.cs │ ├── SqlMigration │ │ ├── DatabaseDriverDispatcher.cs │ │ ├── GenericDatabaseMigrator.cs │ │ ├── IDataProvider.cs │ │ ├── IDatabaseDriver.cs │ │ ├── JsPatcher.cs │ │ ├── LocalDataProvider.cs │ │ ├── MigrationProvider.cs │ │ ├── Model │ │ │ ├── AbstractCollection.cs │ │ │ ├── CollectionWithReferences.cs │ │ │ ├── EmbeddedArrayValue.cs │ │ │ ├── EmbeddedCollection.cs │ │ │ ├── EmbeddedDocumentSqlKeysStorage.cs │ │ │ ├── EmbeddedObjectValue.cs │ │ │ ├── ICollectionReference.cs │ │ │ ├── LinkedCollection.cs │ │ │ ├── MigrationRequest.cs │ │ │ ├── MigrationResult.cs │ │ │ ├── MigrationSettings.cs │ │ │ ├── MigrationTestRequest.cs │ │ │ ├── MigrationTestSettings.cs │ │ │ ├── ReferenceInformation.cs │ │ │ ├── RelationType.cs │ │ │ ├── RootCollection.cs │ │ │ ├── SourceSqlDatabase.cs │ │ │ ├── SqlMigrationDocument.cs │ │ │ └── SqlStatementProvider.cs │ │ ├── MsSQL │ │ │ ├── MsSqlDatabaseMigrator.Migration.cs │ │ │ └── MsSqlDatabaseMigrator.Schema.cs │ │ ├── MySQL │ │ │ ├── MySqlDatabaseMigrator.Migration.cs │ │ │ └── MySqlDatabaseMigrator.Schema.cs │ │ ├── NpgSQL │ │ │ ├── NpgSqlDatabaseMigrator.Migration.cs │ │ │ └── NpgSqlDatabaseMigrator.Schema.cs │ │ ├── Oracle │ │ │ ├── OracleDatabaseMigrator.Migration.cs │ │ │ └── OracleDatabaseMigrator.Schema.cs │ │ ├── Schema │ │ │ ├── ColumnType.cs │ │ │ ├── DatabaseSchema.cs │ │ │ ├── SqlTableSchema.cs │ │ │ ├── TableColumn.cs │ │ │ └── TableReference.cs │ │ └── SqlMigrationWriter.cs │ ├── Storage │ │ ├── Layout │ │ │ └── StorageLoader.cs │ │ ├── Schema │ │ │ ├── ISchemaUpdate.cs │ │ │ ├── SchemaUpgradeExtensions.cs │ │ │ ├── SchemaUpgrader.cs │ │ │ ├── UpdateStep.cs │ │ │ └── Updates │ │ │ │ ├── Configuration │ │ │ │ ├── 40011 │ │ │ │ │ └── From40010.cs │ │ │ │ └── 50000 │ │ │ │ │ └── From40011.cs │ │ │ │ ├── CoraxIndex │ │ │ │ ├── 60000 │ │ │ │ │ └── From54000.cs │ │ │ │ ├── 61000 │ │ │ │ │ └── From60000.cs │ │ │ │ └── 62000 │ │ │ │ │ └── From61000.cs │ │ │ │ ├── Documents │ │ │ │ ├── 40011 │ │ │ │ │ └── From40010.cs │ │ │ │ ├── 40012 │ │ │ │ │ └── From40011.cs │ │ │ │ ├── 40014 │ │ │ │ │ └── From40013.cs │ │ │ │ ├── 40015 │ │ │ │ │ └── From40014.cs │ │ │ │ ├── 41016 │ │ │ │ │ └── From40015.cs │ │ │ │ ├── 42017 │ │ │ │ │ └── From41016.cs │ │ │ │ ├── 50001 │ │ │ │ │ ├── From42017.cs │ │ │ │ │ └── From50000.cs │ │ │ │ ├── 50002 │ │ │ │ │ └── From50001.cs │ │ │ │ ├── 60000 │ │ │ │ │ └── From50002.cs │ │ │ │ ├── 61000 │ │ │ │ │ └── From60000.cs │ │ │ │ └── 62000 │ │ │ │ │ └── From61000.cs │ │ │ │ ├── LuceneIndex │ │ │ │ ├── 40011 │ │ │ │ │ └── From40010.cs │ │ │ │ ├── 40012 │ │ │ │ │ └── From40011.cs │ │ │ │ ├── 50000 │ │ │ │ │ └── From40012.cs │ │ │ │ ├── 54000 │ │ │ │ │ └── From50000.cs │ │ │ │ ├── 60000 │ │ │ │ │ └── From54000.cs │ │ │ │ ├── 61000 │ │ │ │ │ └── From60000.cs │ │ │ │ └── 62000 │ │ │ │ │ └── From61000.cs │ │ │ │ └── Server │ │ │ │ ├── 40011 │ │ │ │ └── From40010.cs │ │ │ │ ├── 42012 │ │ │ │ └── From40011.cs │ │ │ │ ├── 42013 │ │ │ │ └── From42012.cs │ │ │ │ ├── 42014 │ │ │ │ └── From42013.cs │ │ │ │ ├── 42015 │ │ │ │ └── From42014.cs │ │ │ │ ├── 42016 │ │ │ │ └── From42015.cs │ │ │ │ ├── 42017 │ │ │ │ └── From42016.cs │ │ │ │ ├── 42018 │ │ │ │ └── From42017.cs │ │ │ │ ├── 42019 │ │ │ │ └── From42018.cs │ │ │ │ ├── 50000 │ │ │ │ └── From42019.cs │ │ │ │ ├── 53000 │ │ │ │ └── From50000.cs │ │ │ │ ├── 53001 │ │ │ │ ├── From52000.cs │ │ │ │ └── From53000.cs │ │ │ │ ├── 60000 │ │ │ │ └── From53001.cs │ │ │ │ ├── 61000 │ │ │ │ └── From60000.cs │ │ │ │ └── 62000 │ │ │ │ └── From61000.cs │ │ └── StorageSpaceMonitor.cs │ ├── TrafficWatch │ │ ├── TrafficWatchConnection.cs │ │ ├── TrafficWatchHandler.cs │ │ ├── TrafficWatchManager.cs │ │ └── TrafficWatchToLog.cs │ ├── Utils │ │ ├── AffinityHelper.cs │ │ ├── AsyncBlittableJsonTextWriterForDebug.cs │ │ ├── AsyncLock.cs │ │ ├── BackupUtils.cs │ │ ├── CertificateUtils.cs │ │ ├── ChangeVector.cs │ │ ├── ChangeVectorUtils.cs │ │ ├── ChunkedMmapStream.cs │ │ ├── Cli │ │ │ ├── BrowserHelper.cs │ │ │ ├── CommandLineConfigurationArgumentsHelper.cs │ │ │ ├── CommandLineSwitches.cs │ │ │ ├── ConsoleMessage.cs │ │ │ ├── JavaScriptCli.cs │ │ │ ├── PostSetupCliArgumentsUpdater.cs │ │ │ ├── RavenCli.cs │ │ │ ├── RuntimeSettings.cs │ │ │ └── WelcomeMessage.cs │ │ ├── ConcurrentQueueExtensions.cs │ │ ├── Configuration │ │ │ └── ClientConfigurationHelper.cs │ │ ├── ConflictResolverAdvisor.cs │ │ ├── Cpu │ │ │ ├── CpuHelper.cs │ │ │ ├── CpuUsageCalculator.cs │ │ │ ├── CpuUsageExtensionPoint.cs │ │ │ └── ProcessInfo.cs │ │ ├── CultureHelper.cs │ │ ├── DebuggerAttachedTimeout.cs │ │ ├── DeleteOnCloseZipArchive.cs │ │ ├── DirectoryExecUtils.cs │ │ ├── DisposableLazy.cs │ │ ├── EchoServer.cs │ │ ├── EnumExtensions.cs │ │ ├── Enumerators │ │ │ ├── PulsedEnumerationState.cs │ │ │ └── PulsedTransactionEnumerator.cs │ │ ├── ExceptionAggregator.cs │ │ ├── ExceptionHelper.cs │ │ ├── Features │ │ │ ├── Feature.cs │ │ │ ├── FeatureGuardian.cs │ │ │ └── FeaturesAvailability.cs │ │ ├── FileLocker.cs │ │ ├── HttpResponseHelper.cs │ │ ├── IOExtensions.cs │ │ ├── Imports │ │ │ └── Memory │ │ │ │ ├── CacheEntry.CacheEntryState.cs │ │ │ │ ├── CacheEntry.CacheEntryTokens.cs │ │ │ │ ├── CacheEntry.cs │ │ │ │ ├── CacheEntryHelper.cs │ │ │ │ ├── MemoryCache.Extensions.cs │ │ │ │ ├── MemoryCache.cs │ │ │ │ └── MemoryCacheOptions.cs │ │ ├── IncludeUtil.cs │ │ ├── IoMetrics │ │ │ ├── IoMetricsUtil.cs │ │ │ └── LiveIOStatsCollector.cs │ │ ├── JsonStringHelper.cs │ │ ├── LeaveOpenStream.cs │ │ ├── LruDictionary.cs │ │ ├── MetricCacher.cs │ │ ├── MetricCounters.cs │ │ ├── Metrics │ │ │ ├── Clock.cs │ │ │ ├── Commands │ │ │ │ └── GetDatabaseMetricsCommand.cs │ │ │ ├── EWMA.cs │ │ │ ├── MeterMetric.cs │ │ │ ├── MeterValue.cs │ │ │ └── MetricsScheduler.cs │ │ ├── MicrosoftLogging │ │ │ ├── LogLevelToString.cs │ │ │ ├── MicrosoftLoggerFactory.cs │ │ │ ├── MicrosoftLoggingConfiguration.cs │ │ │ ├── MicrosoftLoggingProvider.cs │ │ │ ├── SparrowLoggerWrapper.cs │ │ │ └── WebHostBuilderExtensions.cs │ │ ├── Monitoring │ │ │ ├── CollectionMetrics.cs │ │ │ ├── DatabaseMetrics.cs │ │ │ ├── IndexMetrics.cs │ │ │ └── ServerMetrics.cs │ │ ├── OngoingTasksUtils.cs │ │ ├── OperationIdEncoder.cs │ │ ├── ParentProcessUtilities.cs │ │ ├── PartialStream.cs │ │ ├── Pipes.cs │ │ ├── PoolOfThreads.cs │ │ ├── PosixFile.cs │ │ ├── ProcessExtensions.cs │ │ ├── RavenHttpClient.cs │ │ ├── RavenServerHttpClientFactory.cs │ │ ├── Reference.cs │ │ ├── ReplicationUtils.cs │ │ ├── SecurityClearanceValidator.cs │ │ ├── SecurityUtils.cs │ │ ├── ShardHelper.cs │ │ ├── SizeLimitedConcurrentDictionary.cs │ │ ├── Stats │ │ │ ├── DatabaseAwareLivePerformanceCollector.cs │ │ │ ├── LivePerformanceCollector.cs │ │ │ ├── StatsAggregator.cs │ │ │ └── StatsScope.cs │ │ ├── ThreadHelper.cs │ │ ├── ThreadsUsage.cs │ │ ├── ThrottledManualResetEventSlim.cs │ │ ├── TransactionHolder.cs │ │ ├── TypeConverter.cs │ │ ├── UnhandledExceptions.cs │ │ ├── UrlUtil.cs │ │ ├── WebSocketHelper.cs │ │ ├── WildcardMatcher.cs │ │ └── WindowsServiceRunner.cs │ ├── Web │ │ ├── AbstractQueryStringParameters.cs │ │ ├── Assets │ │ │ ├── AuthError.html │ │ │ └── Unsafe.html │ │ ├── Authentication │ │ │ ├── AdminCertificatesHandler.cs │ │ │ ├── TwoFactorAuthentication.cs │ │ │ └── TwoFactorAuthenticationHandler.cs │ │ ├── HtmlUtil.cs │ │ ├── Http │ │ │ ├── Behaviors │ │ │ │ └── ProxyCommandResponseBehavior.cs │ │ │ └── ProxyCommand.cs │ │ ├── Operations │ │ │ ├── GetSuggestConflictResolutionOperation.cs │ │ │ ├── OperationsHandler.cs │ │ │ ├── OperationsServerHandler.cs │ │ │ └── Processors │ │ │ │ ├── AbstractOperationsHandlerProcessorForGetAll.cs │ │ │ │ ├── AbstractOperationsHandlerProcessorForGetNextOperationId.cs │ │ │ │ ├── AbstractOperationsHandlerProcessorForKill.cs │ │ │ │ ├── AbstractOperationsHandlerProcessorForState.cs │ │ │ │ ├── OperationsHandlerProcessorForGetAll.cs │ │ │ │ ├── OperationsHandlerProcessorForGetNextOperationId.cs │ │ │ │ ├── OperationsHandlerProcessorForKill.cs │ │ │ │ └── OperationsHandlerProcessorForState.cs │ │ ├── RequestHandler.Audit.cs │ │ ├── RequestHandler.SmugglerHelper.cs │ │ ├── RequestHandler.cs │ │ ├── RequestHandlerContext.cs │ │ ├── ResponseCompression │ │ │ ├── DeflateCompressionProvider.cs │ │ │ ├── DeflateCompressionProviderOptions.cs │ │ │ ├── ZstdCompressionProvider.cs │ │ │ └── ZstdCompressionProviderOptions.cs │ │ ├── ServerRequestHandler.cs │ │ ├── Studio │ │ │ ├── DataDirectoryInfo.cs │ │ │ ├── EmbeddedData │ │ │ │ ├── Northwind.ravendbdump │ │ │ │ └── NorthwindModel.cs │ │ │ ├── FolderPath.cs │ │ │ ├── LicenseHandler.cs │ │ │ ├── Processors │ │ │ │ ├── AbstractBucketsHandlerProcessorForGetBucket.cs │ │ │ │ ├── AbstractBucketsHandlerProcessorForGetBuckets.cs │ │ │ │ ├── AbstractStudioCollectionsHandlerProcessorForPreviewCollection.cs │ │ │ │ ├── AbstractStudioDatabaseTasksHandlerProcessorForGetIndexDefaults.cs │ │ │ │ ├── AbstractStudioDatabaseTasksHandlerProcessorForGetSuggestConflictResolution.cs │ │ │ │ ├── AbstractStudioDatabaseTasksHandlerProcessorForRestartDatabase.cs │ │ │ │ ├── AbstractStudioIndexHandlerForPostIndexFields.cs │ │ │ │ ├── AbstractStudioIndexHandlerProcessorForGetIndexErrorsCount.cs │ │ │ │ ├── BucketsHandlerProcessorForGetBucket.cs │ │ │ │ ├── BucketsHandlerProcessorForGetBuckets.cs │ │ │ │ ├── StudioCollectionsHandlerProcessorForPreviewCollection.cs │ │ │ │ ├── StudioDatabaseTasksHandlerProcessorForGetFolderPathOptionsForDatabaseAdmin.cs │ │ │ │ ├── StudioDatabaseTasksHandlerProcessorForGetFolderPathOptionsForOperator.cs │ │ │ │ ├── StudioDatabaseTasksHandlerProcessorForGetIndexDefaults.cs │ │ │ │ ├── StudioDatabaseTasksHandlerProcessorForGetSuggestConflictResolution.cs │ │ │ │ ├── StudioDatabaseTasksHandlerProcessorForRestartDatabase.cs │ │ │ │ ├── StudioIndexHandlerForPostIndexFields.cs │ │ │ │ ├── StudioIndexHandlerForPostIndexType.cs │ │ │ │ └── StudioTasksHandlerProcessorForTestPeriodicBackupCredentials.cs │ │ │ ├── SampleDataHandler.cs │ │ │ ├── Sharding │ │ │ │ ├── BucketsHandler.cs │ │ │ │ ├── Processors │ │ │ │ │ ├── ShardedBucketsHandlerProcessorForGetBucket.cs │ │ │ │ │ ├── ShardedBucketsHandlerProcessorForGetBuckets.cs │ │ │ │ │ ├── ShardedStudioCollectionsHandlerProcessorForPreviewCollection.cs │ │ │ │ │ ├── ShardedStudioDatabaseTasksHandlerProcessorForGetIndexDefaults.cs │ │ │ │ │ ├── ShardedStudioDatabaseTasksHandlerProcessorForGetSuggestConflictResolution.cs │ │ │ │ │ ├── ShardedStudioDatabaseTasksHandlerProcessorForRestartDatabase.cs │ │ │ │ │ ├── ShardedStudioIndexHandlerForPostIndexFields.cs │ │ │ │ │ └── ShardedStudioIndexHandlerProcessorForGetIndexErrorsCount.cs │ │ │ │ ├── ShardedBucketsHandler.cs │ │ │ │ ├── ShardedSqlMigrationHandler.cs │ │ │ │ ├── ShardedStudioCollectionsHandler.cs │ │ │ │ ├── ShardedStudioDatabaseTasksHandler.cs │ │ │ │ └── ShardedStudioIndexHandler.cs │ │ │ ├── SqlMigrationHandler.cs │ │ │ ├── StudioCollectionFieldsHandler.cs │ │ │ ├── StudioCollectionRunner.cs │ │ │ ├── StudioCollectionsHandler.cs │ │ │ ├── StudioDatabaseTasksHandler.cs │ │ │ ├── StudioFeedbackHandler.cs │ │ │ ├── StudioIndexHandler.cs │ │ │ ├── StudioStatsHandler.cs │ │ │ ├── StudioTasksHandler.cs │ │ │ └── UpgradeInfoHandler.cs │ │ └── System │ │ │ ├── AdminConfigurationHandler.cs │ │ │ ├── AdminCpuCreditsHandler.cs │ │ │ ├── AdminDatabasesHandler.cs │ │ │ ├── AdminDebugQueryClauseCacheHandler.cs │ │ │ ├── AdminDumpHandler.cs │ │ │ ├── AdminGcDebugHandler.cs │ │ │ ├── AdminIoMetricsHandler.cs │ │ │ ├── AdminMetricsHandler.cs │ │ │ ├── AdminMonitoringHandler.cs │ │ │ ├── AdminPrometheusMonitoringHandler.cs │ │ │ ├── AdminServerWideHandler.cs │ │ │ ├── AdminStatsHandler.cs │ │ │ ├── AdminStorageHandler.cs │ │ │ ├── AdminStudioServerWideHandler.cs │ │ │ ├── AdminTcpConnectionDebugInfoHandler.cs │ │ │ ├── Analyzers │ │ │ ├── AdminAnalyzersHandler.cs │ │ │ └── AnalyzersHandler.cs │ │ │ ├── BackupDatabaseHandler.cs │ │ │ ├── BuildVersionHandler.cs │ │ │ ├── CompareExchangeHandler.cs │ │ │ ├── CorsPreflightHandler.cs │ │ │ ├── DatabaseHelper.cs │ │ │ ├── DatabaseTcpConnectionInfoHandler.cs │ │ │ ├── DatabasesDebugHandler.cs │ │ │ ├── DatabasesHandler.cs │ │ │ ├── DebugHandler.cs │ │ │ ├── EmptyMessageHandler.cs │ │ │ ├── EnumHelper.cs │ │ │ ├── OngoingTasksHandler.cs │ │ │ ├── Processors │ │ │ ├── Backups │ │ │ │ ├── BackupDatabaseHandlerProcessorForGetPeriodicBackup.cs │ │ │ │ └── BackupDatabaseHandlerProcessorForGetPeriodicBackupStatus.cs │ │ │ ├── CompareExchange │ │ │ │ ├── AbstractCompareExchangeHandlerProcessorForGetCompareExchangeValues.cs │ │ │ │ ├── CompareExchangeHandlerProcessorForDeleteCompareExchangeValue.cs │ │ │ │ ├── CompareExchangeHandlerProcessorForGetCompareExchangeValues.cs │ │ │ │ └── CompareExchangeHandlerProcessorForPutCompareExchangeValue.cs │ │ │ ├── Databases │ │ │ │ ├── AbstractDatabasesHandlerProcessorForAllowedDatabases.cs │ │ │ │ ├── AdminDatabasesHandlerProcessorForGetDatabaseRecord.cs │ │ │ │ ├── DatabasesHandlerProcessorForGet.cs │ │ │ │ └── DatabasesHandlerProcessorForGetRestorePoints.cs │ │ │ ├── OngoingTasks │ │ │ │ ├── AbstractOngoingTasksHandlerProcessorForGetOngoingTask.cs │ │ │ │ ├── AbstractOngoingTasksHandlerProcessorForGetOngoingTasks.cs │ │ │ │ ├── AbstractOngoingTasksHandlerProcessorForGetPeriodicBackupTimers.cs │ │ │ │ ├── OngoingTasksHandlerProcessorForGetOngoingTask.cs │ │ │ │ ├── OngoingTasksHandlerProcessorForGetOngoingTasks.cs │ │ │ │ └── OngoingTasksHandlerProcessorForGetPeriodicBackupTimers.cs │ │ │ ├── Stats │ │ │ │ └── AdminStatsHandlerProcessorForGetServerStatistics.cs │ │ │ ├── Studio │ │ │ │ ├── StudioDatabasesHandlerForGetDatabases.cs │ │ │ │ └── StudioDatabasesHandlerForGetDatabasesState.cs │ │ │ └── Tcp │ │ │ │ └── DatabaseTcpConnectionInfoHandlerProcessorForGet.cs │ │ │ ├── SetupHandler.cs │ │ │ ├── ShardedAdminDatabaseHandler.cs │ │ │ ├── Sorters │ │ │ ├── AdminSortersHandler.cs │ │ │ └── SortersHandler.cs │ │ │ ├── StudioDatabasesHandler.cs │ │ │ ├── StudioHandler.cs │ │ │ ├── TcpConnectionInfoHandler.cs │ │ │ ├── TestConnectionHandler.cs │ │ │ └── UrlHelper.cs │ └── settings.default.json ├── Raven.Studio │ ├── .babelrc.json │ ├── .eslintrc.js │ ├── .npmrc │ ├── .nvmrc │ ├── .prettierignore │ ├── .prettierrc.json │ ├── .storybook │ │ ├── import_plugin.js │ │ ├── main.ts │ │ ├── preview-head.html │ │ └── preview.js │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Raven.Studio.csproj │ ├── aceBuild │ │ ├── .gitignore │ │ ├── .nvmrc │ │ ├── Makefile.dryice.js │ │ ├── README.txt │ │ ├── addons │ │ │ └── lib │ │ │ │ └── ace │ │ │ │ ├── background_tokenizer.js │ │ │ │ ├── mode │ │ │ │ ├── folding │ │ │ │ │ └── raven_diff.js │ │ │ │ ├── json │ │ │ │ │ ├── checkNumber.js │ │ │ │ │ ├── checkNumericKey.js │ │ │ │ │ └── json_parse_with_number_check.js │ │ │ │ ├── json_newline_friendly.js │ │ │ │ ├── json_newline_friendly_highlight_rules.js │ │ │ │ ├── ravenMapLinq.js │ │ │ │ ├── ravenMapLinq_highlight_rules.js │ │ │ │ ├── ravenReduceLinq.js │ │ │ │ ├── ravenReduceLinq_highlight_rules.js │ │ │ │ ├── raven_document.js │ │ │ │ ├── raven_document_diff.js │ │ │ │ ├── raven_document_highlight_rules.js │ │ │ │ ├── raven_document_newline_friendly.js │ │ │ │ ├── raven_document_newline_friendly_highlight_rules.js │ │ │ │ ├── raven_document_worker.js │ │ │ │ ├── rql.js │ │ │ │ └── rql_highlight_rules.js │ │ │ │ └── theme │ │ │ │ ├── raven.css │ │ │ │ └── raven.js │ │ ├── package-lock.json │ │ └── package.json │ ├── eslint-local-rules.js │ ├── jest.config.js │ ├── languageService │ │ ├── grammar │ │ │ ├── BaseRqlLexer.g4 │ │ │ └── BaseRqlParser.g4 │ │ ├── src │ │ │ ├── RavenVocabularyImpl.ts │ │ │ ├── RqlLexer.ts │ │ │ ├── RqlParser.ts │ │ │ ├── autocomplete.ts │ │ │ ├── generated │ │ │ │ ├── BaseRqlLexer.interp │ │ │ │ ├── BaseRqlLexer.tokens │ │ │ │ ├── BaseRqlLexer.ts │ │ │ │ ├── BaseRqlParser.interp │ │ │ │ ├── BaseRqlParser.tokens │ │ │ │ ├── BaseRqlParser.ts │ │ │ │ └── BaseRqlParserVisitor.ts │ │ │ ├── index.ts │ │ │ ├── parser.ts │ │ │ ├── providers │ │ │ │ ├── baseProvider.ts │ │ │ │ ├── common.ts │ │ │ │ ├── fields.ts │ │ │ │ ├── from.ts │ │ │ │ ├── group_by.ts │ │ │ │ ├── keywords.ts │ │ │ │ └── order_by.ts │ │ │ ├── quoteUtils.ts │ │ │ ├── rqlQueryVisitor.ts │ │ │ ├── scanner.ts │ │ │ └── types.d.ts │ │ └── test │ │ │ ├── TRASH.ts │ │ │ ├── autocomplete │ │ │ ├── EmptyMetadataProvider.ts │ │ │ ├── FakeMetadataProvider.ts │ │ │ ├── fields.spec.ts │ │ │ ├── filter.spec.ts │ │ │ ├── from.spec.ts │ │ │ ├── group.spec.ts │ │ │ ├── include.spec.ts │ │ │ ├── limit.spec.ts │ │ │ ├── order_by.spec.ts │ │ │ ├── scannerSeek.spec.ts │ │ │ ├── select.spec.ts │ │ │ ├── visitor.spec.ts │ │ │ └── where.spec.ts │ │ │ ├── autocompleteUtils.ts │ │ │ ├── data │ │ │ └── queries.json │ │ │ ├── grammar │ │ │ ├── filterStatement.spec.ts │ │ │ ├── fromStatement.spec.ts │ │ │ ├── groupByStatement.spec.ts │ │ │ ├── loadStatement.spec.ts │ │ │ ├── orderBy.spec.ts │ │ │ ├── parameterStatement.spec.ts │ │ │ ├── select.spec.ts │ │ │ ├── timeSeriesFunctions.spec.ts │ │ │ ├── updateStatement.spec.ts │ │ │ └── whereStatement.spec.ts │ │ │ └── ravendbQueries.spec.ts │ ├── package-lock.json │ ├── package.json │ ├── runtimeconfig.template.json │ ├── scripts │ │ ├── findNewestFile.js │ │ ├── fix_packages.js │ │ ├── fsUtils.js │ │ ├── setup_jest.js │ │ ├── setup_runtime.ts │ │ └── typings.js │ ├── tsconfig.json │ ├── typescript │ │ ├── commands │ │ │ ├── auth │ │ │ │ ├── deleteCertificateCommand.ts │ │ │ │ ├── forceRenewServerCertificateCommand.ts │ │ │ │ ├── forgotTwoFactorSecretCommand.ts │ │ │ │ ├── generateTwoFactorSecretCommand.ts │ │ │ │ ├── getCertificatesCommand.ts │ │ │ │ ├── getClientCertificateCommand.ts │ │ │ │ ├── getClusterDomainsCommand.ts │ │ │ │ ├── getServerCertificateRenewalDateCommand.ts │ │ │ │ ├── getServerCertificateSetupModeCommand.ts │ │ │ │ ├── getTwoFactorServerConfigurationCommand.ts │ │ │ │ ├── replaceClusterCertificateCommand.ts │ │ │ │ ├── updateCertificatePermissionsCommand.ts │ │ │ │ ├── uploadCertificateCommand.ts │ │ │ │ └── validateTwoFactorSecretCommand.ts │ │ │ ├── commandBase.ts │ │ │ ├── database │ │ │ │ ├── cluster │ │ │ │ │ ├── addNodeToClusterCommand.ts │ │ │ │ │ ├── bootstrapClusterCommand.ts │ │ │ │ │ ├── demoteClusterNodeCommand.ts │ │ │ │ │ ├── forceLeaderTimeoutCommand.ts │ │ │ │ │ ├── getClusterLogCommand.ts │ │ │ │ │ ├── getClusterLogEntryCommand.ts │ │ │ │ │ ├── getClusterNodeInfoCommand.ts │ │ │ │ │ ├── getClusterObserverDecisionsCommand.ts │ │ │ │ │ ├── getClusterTopologyCommand.ts │ │ │ │ │ ├── leaderStepDownCommand.ts │ │ │ │ │ ├── promoteClusterNodeCommand.ts │ │ │ │ │ ├── removeEntryFromLogCommand.ts │ │ │ │ │ ├── removeNodeFromClusterCommand.ts │ │ │ │ │ ├── setLicenseLimitsCommand.ts │ │ │ │ │ ├── testAzureQueueStorageServerConnectionCommand.ts │ │ │ │ │ ├── testClusterNodeConnectionCommand.ts │ │ │ │ │ ├── testElasticSearchNodeConnectionCommand.ts │ │ │ │ │ ├── testKafkaServerConnectionCommand.ts │ │ │ │ │ ├── testRabbitMqServerConnectionCommand.ts │ │ │ │ │ ├── testSqlConnectionStringCommand.ts │ │ │ │ │ └── toggleClusterObserverCommand.ts │ │ │ │ ├── cmpXchg │ │ │ │ │ ├── deleteCompareExchangeItemCommand.ts │ │ │ │ │ ├── getCompareExchangeItemCommand.ts │ │ │ │ │ ├── getCompareExchangeItemsCommand.ts │ │ │ │ │ └── saveCompareExchangeItemCommand.ts │ │ │ │ ├── dbGroup │ │ │ │ │ ├── addNodeToDatabaseGroupCommand.ts │ │ │ │ │ ├── addNodeToShardCommand.ts │ │ │ │ │ ├── addOrchestratorToDatabaseGroupCommand.ts │ │ │ │ │ ├── addShardToDatabaseGroupCommand.ts │ │ │ │ │ ├── promoteDatabaseNodeCommand.ts │ │ │ │ │ ├── reorderNodesInDatabaseGroupCommand.ts │ │ │ │ │ ├── startReshardingCommand.ts │ │ │ │ │ └── toggleDynamicNodeAssignmentCommand.ts │ │ │ │ ├── debug │ │ │ │ │ ├── forceTombstonesCleanupCommand.ts │ │ │ │ │ ├── getBucketCommand.ts │ │ │ │ │ ├── getBucketsCommand.ts │ │ │ │ │ ├── getDebugMemoryStatsCommand.ts │ │ │ │ │ ├── getDebugThreadsRunawayCommand.ts │ │ │ │ │ ├── getEnvironmentStorageReportCommand.ts │ │ │ │ │ ├── getIndexesPerformance.ts │ │ │ │ │ ├── getStorageReportCommand.ts │ │ │ │ │ ├── getTombstonesStateCommand.ts │ │ │ │ │ ├── promoteDatabaseNodeCommand.ts │ │ │ │ │ ├── recordTransactionsCommand.ts │ │ │ │ │ ├── replayTransactionsCommand.ts │ │ │ │ │ └── stopRecordingTransactionsCommand.ts │ │ │ │ ├── documents │ │ │ │ │ ├── attachments │ │ │ │ │ │ ├── deleteAttachmentCommand.ts │ │ │ │ │ │ └── uploadAttachmentCommand.ts │ │ │ │ │ ├── cloneRelatedItemsCommand.ts │ │ │ │ │ ├── counters │ │ │ │ │ │ ├── deleteCounterCommand.ts │ │ │ │ │ │ ├── getCountersCommand.ts │ │ │ │ │ │ └── setCounterCommand.ts │ │ │ │ │ ├── deleteCollectionCommand.ts │ │ │ │ │ ├── deleteDocsMatchingQueryCommand.ts │ │ │ │ │ ├── deleteDocumentCommand.ts │ │ │ │ │ ├── deleteDocumentsCommand.ts │ │ │ │ │ ├── deleteRevisionsForDocumentsCommand.ts │ │ │ │ │ ├── executeBulkDocsCommand.ts │ │ │ │ │ ├── forceRevisionCreationCommand.ts │ │ │ │ │ ├── generateClassCommand.ts │ │ │ │ │ ├── getCollectionFieldsCommand.ts │ │ │ │ │ ├── getCollectionsStatsCommand.ts │ │ │ │ │ ├── getConflictSolverConfigurationCommand.ts │ │ │ │ │ ├── getDataArchivalConfigurationCommand.ts │ │ │ │ │ ├── getDocumentAtRevisionCommand.ts │ │ │ │ │ ├── getDocumentMetadataCommand.ts │ │ │ │ │ ├── getDocumentPhysicalSizeCommand.ts │ │ │ │ │ ├── getDocumentRevisionsCommand.ts │ │ │ │ │ ├── getDocumentRevisionsCountCommand.ts │ │ │ │ │ ├── getDocumentWithMetadataCommand.ts │ │ │ │ │ ├── getDocumentsCompressionConfigurationCommand.ts │ │ │ │ │ ├── getDocumentsFromCollectionCommand.ts │ │ │ │ │ ├── getDocumentsMetadataByIDPrefixCommand.ts │ │ │ │ │ ├── getDocumentsPreviewCommand.ts │ │ │ │ │ ├── getDocumentsWithMetadataCommand.ts │ │ │ │ │ ├── getExpirationConfigurationCommand.ts │ │ │ │ │ ├── getRefreshConfigurationCommand.ts │ │ │ │ │ ├── getRevisionsBinDocumentMetadataCommand.ts │ │ │ │ │ ├── getRevisionsBinEntryCommand.ts │ │ │ │ │ ├── getRevisionsConfigurationCommand.ts │ │ │ │ │ ├── getRevisionsForConflictsConfigurationCommand.ts │ │ │ │ │ ├── revertRevisionsCommand.ts │ │ │ │ │ ├── saveConflictSolverConfigurationCommand.ts │ │ │ │ │ ├── saveDataArchivalConfigurationCommand.ts │ │ │ │ │ ├── saveDocumentCommand.ts │ │ │ │ │ ├── saveDocumentsCompressionCommand.ts │ │ │ │ │ ├── saveExpirationConfigurationCommand.ts │ │ │ │ │ ├── saveRefreshConfigurationCommand.ts │ │ │ │ │ ├── saveRevisionsConfigurationCommand.ts │ │ │ │ │ ├── saveRevisionsForConflictsConfigurationCommand.ts │ │ │ │ │ ├── timeSeries │ │ │ │ │ │ ├── deleteTimeSeriesCommand.ts │ │ │ │ │ │ ├── getTimeSeriesCommand.ts │ │ │ │ │ │ ├── getTimeSeriesConfigurationCommand.ts │ │ │ │ │ │ ├── getTimeSeriesStatsCommand.ts │ │ │ │ │ │ ├── saveTimeSeriesCommand.ts │ │ │ │ │ │ └── saveTimeSeriesConfigurationCommand.ts │ │ │ │ │ └── verifyDocumentsIDsCommand.ts │ │ │ │ ├── identities │ │ │ │ │ ├── getIdentitiesCommand.ts │ │ │ │ │ └── seedIdentityCommand.ts │ │ │ │ ├── index │ │ │ │ │ ├── clearIndexErrorsCommand.ts │ │ │ │ │ ├── deleteIndexCommand.ts │ │ │ │ │ ├── detectIndexTypeCommand.ts │ │ │ │ │ ├── disableIndexCommand.ts │ │ │ │ │ ├── dumpIndexCommand.ts │ │ │ │ │ ├── enableIndexCommand.ts │ │ │ │ │ ├── explainQueryCommand.ts │ │ │ │ │ ├── finishRollingCommand.ts │ │ │ │ │ ├── forceIndexReplace.ts │ │ │ │ │ ├── formatIndexCommand.ts │ │ │ │ │ ├── getCSharpIndexDefinitionCommand.ts │ │ │ │ │ ├── getIndexAutoConvertCommand.ts │ │ │ │ │ ├── getIndexDebugSourceDocumentsCommand.ts │ │ │ │ │ ├── getIndexDefaultsCommand.ts │ │ │ │ │ ├── getIndexDefinitionCommand.ts │ │ │ │ │ ├── getIndexEntriesFieldsCommand.ts │ │ │ │ │ ├── getIndexFieldsFromMapCommand.ts │ │ │ │ │ ├── getIndexHistoryCommand.ts │ │ │ │ │ ├── getIndexMapReduceTreeCommand.ts │ │ │ │ │ ├── getIndexMergeSuggestionsCommand.ts │ │ │ │ │ ├── getIndexNamesCommand.ts │ │ │ │ │ ├── getIndexStalenessReasonsCommand.ts │ │ │ │ │ ├── getIndexTermsCommand.ts │ │ │ │ │ ├── getIndexesDefinitionsCommand.ts │ │ │ │ │ ├── getIndexesErrorCommand.ts │ │ │ │ │ ├── getIndexesErrorCountCommand.ts │ │ │ │ │ ├── getIndexesProgressCommand.ts │ │ │ │ │ ├── getIndexesStatsCommand.ts │ │ │ │ │ ├── getIndexesStatusCommand.ts │ │ │ │ │ ├── openFaultyIndexCommand.ts │ │ │ │ │ ├── optimizeIndexCommand.ts │ │ │ │ │ ├── resetIndexCommand.ts │ │ │ │ │ ├── saveIndexDefinitionsCommand.ts │ │ │ │ │ ├── saveIndexLockModeCommand.ts │ │ │ │ │ ├── saveIndexPriorityCommand.ts │ │ │ │ │ ├── testIndexCommand.ts │ │ │ │ │ ├── toggleDisableIndexingCommand.ts │ │ │ │ │ └── togglePauseIndexingCommand.ts │ │ │ │ ├── patch │ │ │ │ │ └── patchCommand.ts │ │ │ │ ├── query │ │ │ │ │ ├── killQueryCommand.ts │ │ │ │ │ └── queryCommand.ts │ │ │ │ ├── replication │ │ │ │ │ ├── getConflictsCommand.ts │ │ │ │ │ ├── getConflictsForDocumentCommand.ts │ │ │ │ │ └── getSuggestedConflictResolutionCommand.ts │ │ │ │ ├── secrets │ │ │ │ │ ├── distributeSecretCommand.ts │ │ │ │ │ └── generateSecretCommand.ts │ │ │ │ ├── settings │ │ │ │ │ ├── deleteConnectionStringCommand.ts │ │ │ │ │ ├── deleteCustomAnalyzerCommand.ts │ │ │ │ │ ├── deleteCustomSorterCommand.ts │ │ │ │ │ ├── deleteIntegrationsCredentialsCommand.ts │ │ │ │ │ ├── deleteIntegrationsPostgreSqlCredentialsCommand.ts │ │ │ │ │ ├── enforceRevisionsConfigurationCommand.ts │ │ │ │ │ ├── getConnectionStringInfoCommand.ts │ │ │ │ │ ├── getConnectionStringsCommand.ts │ │ │ │ │ ├── getCustomAnalyzersCommand.ts │ │ │ │ │ ├── getCustomSortersCommand.ts │ │ │ │ │ ├── getDatabaseSettingsCommand.ts │ │ │ │ │ ├── getIntegrationsPostgreSqlCredentialsCommand.ts │ │ │ │ │ ├── getIntegrationsPostgreSqlSupportCommand.ts │ │ │ │ │ ├── saveConnectionStringCommand.ts │ │ │ │ │ ├── saveConnectionStringCommand_OLD.ts │ │ │ │ │ ├── saveCustomAnalyzerCommand.ts │ │ │ │ │ ├── saveCustomSorterCommand.ts │ │ │ │ │ ├── saveDatabaseSettingsCommand.ts │ │ │ │ │ ├── saveIntegrationsPostgreSqlCredentialsCommand.ts │ │ │ │ │ └── saveUnusedDatabaseIDsCommand.ts │ │ │ │ ├── studio │ │ │ │ │ ├── createSampleDataClassCommand.ts │ │ │ │ │ ├── createSampleDataCommand.ts │ │ │ │ │ ├── getClientBuildVersionCommand.ts │ │ │ │ │ ├── getMigratedServerUrlsCommand.ts │ │ │ │ │ ├── getNextOperationIdCommand.ts │ │ │ │ │ ├── getRemoteServerVersionWithDatabasesCommand.ts │ │ │ │ │ ├── importDatabaseCommand.ts │ │ │ │ │ ├── importFromCsvCommand.ts │ │ │ │ │ ├── migrateDatabaseCommand.ts │ │ │ │ │ ├── migrateRavenDbDatabaseCommand.ts │ │ │ │ │ └── validateSmugglerOptionsCommand.ts │ │ │ │ └── tasks │ │ │ │ │ ├── backupNowManualCommand.ts │ │ │ │ │ ├── backupNowPeriodicCommand.ts │ │ │ │ │ ├── delayBackupCommand.ts │ │ │ │ │ ├── deleteOngoingTaskCommand.ts │ │ │ │ │ ├── deleteReplicationHubAccessConfigCommand.ts │ │ │ │ │ ├── dropSubscriptionConnectionCommand.ts │ │ │ │ │ ├── etlProgressCommand.ts │ │ │ │ │ ├── fetchSqlDatabaseSchemaCommand.ts │ │ │ │ │ ├── generateCertificateForReplicationCommand.ts │ │ │ │ │ ├── getBackupLocationCommand.ts │ │ │ │ │ ├── getCronExpressionOccurrenceCommand.ts │ │ │ │ │ ├── getManualBackupCommand.ts │ │ │ │ │ ├── getMigratorPathConfigurationCommand.ts │ │ │ │ │ ├── getOngoingTaskInfoCommand.ts │ │ │ │ │ ├── getOngoingTasksCommand.ts │ │ │ │ │ ├── getPeriodicBackupConfigCommand.ts │ │ │ │ │ ├── getPeriodicBackupConfigurationCommand.ts │ │ │ │ │ ├── getReplicationHubAccessCommand.ts │ │ │ │ │ ├── getReplicationHubTaskInfoCommand.ts │ │ │ │ │ ├── getSubscriptionConnectionDetailsCommand.ts │ │ │ │ │ ├── migrateSqlDatabaseCommand.ts │ │ │ │ │ ├── saveEtlTaskCommand.ts │ │ │ │ │ ├── saveExternalReplicationTaskCommand.ts │ │ │ │ │ ├── savePeriodicBackupConfigurationCommand.ts │ │ │ │ │ ├── saveQueueSinkCommand.ts │ │ │ │ │ ├── saveReplicationHubAccessConfigCommand.ts │ │ │ │ │ ├── saveReplicationHubTaskCommand.ts │ │ │ │ │ ├── saveReplicationSinkTaskCommand.ts │ │ │ │ │ ├── saveSubscriptionTaskCommand.ts │ │ │ │ │ ├── simulateSqlReplicationCommand.ts │ │ │ │ │ ├── testElasticSearchEtlCommand.ts │ │ │ │ │ ├── testOlapEtlCommand.ts │ │ │ │ │ ├── testQueueEtlCommand.ts │ │ │ │ │ ├── testQueueSinkCommand.ts │ │ │ │ │ ├── testRavenEtlCommand.ts │ │ │ │ │ ├── testSqlMigrationCommand.ts │ │ │ │ │ ├── testSqlReplicationCommand.ts │ │ │ │ │ ├── testSubscriptionTaskCommand.ts │ │ │ │ │ └── toggleOngoingTaskCommand.ts │ │ │ ├── licensing │ │ │ │ ├── acceptEulaCommand.ts │ │ │ │ ├── forceLicenseUpdateCommand.ts │ │ │ │ ├── getChangeLogCommand.ts │ │ │ │ ├── getClusterLicenseLimitsUsage.ts │ │ │ │ ├── getConnectivityToLicenseServerCommand.ts │ │ │ │ ├── getDatabaseLicenseLimitsUsage.ts │ │ │ │ ├── getEulaCommand.ts │ │ │ │ ├── getLicenseConfigurationSettingsCommand.ts │ │ │ │ ├── getLicenseStatusCommand.ts │ │ │ │ ├── licenseActivateCommand.ts │ │ │ │ ├── licenseSupportInfoCommand.ts │ │ │ │ └── renewLicenseCommand.ts │ │ │ ├── maintenance │ │ │ │ ├── adminJsScriptCommand.ts │ │ │ │ ├── captureClusterStackTracesCommand.ts │ │ │ │ ├── captureLocalStackTracesCommand.ts │ │ │ │ ├── disableAdminLogsMicrosoftCommand.ts │ │ │ │ ├── enableAdminLogsMicrosoftCommand.ts │ │ │ │ ├── getAdminLogsConfigurationCommand.ts │ │ │ │ ├── getAdminLogsEventListenerConfigurationCommand.ts │ │ │ │ ├── getAdminLogsMicrosoftConfigurationCommand.ts │ │ │ │ ├── getAdminLogsMicrosoftStateCommand.ts │ │ │ │ ├── getServerSettingsCommand.ts │ │ │ │ ├── getStackTraceForThreadCommand.ts │ │ │ │ ├── getTrafficWatchConfigurationCommand.ts │ │ │ │ ├── saveAdminLogsConfigurationCommand.ts │ │ │ │ ├── saveAdminLogsEventListenerConfigurationCommand.ts │ │ │ │ ├── saveAdminLogsMicrosoftConfigurationCommand.ts │ │ │ │ └── saveTrafficWatchConfigurationCommand.ts │ │ │ ├── operations │ │ │ │ ├── dismissNotificationCommand.ts │ │ │ │ ├── killOperationCommand.ts │ │ │ │ └── postponeNotificationCommand.ts │ │ │ ├── resources │ │ │ │ ├── compactDatabaseCommand.ts │ │ │ │ ├── createDatabaseCommand.ts │ │ │ │ ├── deleteDatabaseCommand.ts │ │ │ │ ├── deleteDatabaseFromNodeCommand.ts │ │ │ │ ├── deleteOrchestratorFromNodeCommand.ts │ │ │ │ ├── getAdminStatsCommand.ts │ │ │ │ ├── getClientConfigurationCommand.ts │ │ │ │ ├── getCloudBackupCredentialsFromLinkCommand.ts │ │ │ │ ├── getDatabaseCommand.ts │ │ │ │ ├── getDatabaseDetailedStatsCommand.ts │ │ │ │ ├── getDatabaseFooterStatsCommand.ts │ │ │ │ ├── getDatabaseForStudioCommand.ts │ │ │ │ ├── getDatabaseLocationCommand.ts │ │ │ │ ├── getDatabaseRecordCommand.ts │ │ │ │ ├── getDatabaseStateForStudioCommand.ts │ │ │ │ ├── getDatabaseStatsCommand.ts │ │ │ │ ├── getDatabaseStudioConfigurationCommand.ts │ │ │ │ ├── getDatabasesForStudioCommand.ts │ │ │ │ ├── getDatabasesStateForStudioCommand.ts │ │ │ │ ├── getEssentialDatabaseStatsCommand.ts │ │ │ │ ├── getFolderPathOptionsCommand.ts │ │ │ │ ├── getGlobalClientConfigurationCommand.ts │ │ │ │ ├── getGlobalStudioConfigurationCommand.ts │ │ │ │ ├── getRestorePointsCommand.ts │ │ │ │ ├── getServerBuildVersionCommand.ts │ │ │ │ ├── getStudioBootstrapCommand.ts │ │ │ │ ├── getSystemStorageReportCommand.ts │ │ │ │ ├── loadDatabaseCommand.ts │ │ │ │ ├── restartDatabaseCommand.ts │ │ │ │ ├── restoreDatabaseFromBackupCommand.ts │ │ │ │ ├── saveClientConfigurationCommand.ts │ │ │ │ ├── saveDatabaseLockModeCommand.ts │ │ │ │ ├── saveDatabaseRecordCommand.ts │ │ │ │ ├── saveDatabaseStudioConfigurationCommand.ts │ │ │ │ ├── saveGlobalClientConfigurationCommand.ts │ │ │ │ ├── saveGlobalStudioConfigurationCommand.ts │ │ │ │ ├── sendFeedbackCommand.ts │ │ │ │ ├── toggleDatabaseCommand.ts │ │ │ │ └── validateNameCommand.ts │ │ │ ├── serverWide │ │ │ │ ├── analyzers │ │ │ │ │ ├── deleteServerWideCustomAnalyzerCommand.ts │ │ │ │ │ ├── getServerWideCustomAnalyzersCommand.ts │ │ │ │ │ └── saveServerWideCustomAnalyzerCommand.ts │ │ │ │ ├── sorters │ │ │ │ │ ├── deleteServerWideCustomSorterCommand.ts │ │ │ │ │ ├── getServerWideCustomSortersCommand.ts │ │ │ │ │ └── saveServerWideCustomSorterCommand.ts │ │ │ │ ├── tasks │ │ │ │ │ ├── deleteServerWideTaskCommand.ts │ │ │ │ │ ├── getAllServerWideTasksCommand.ts │ │ │ │ │ ├── getServerWideBackupConfigCommand.ts │ │ │ │ │ ├── getServerWideBackupLocationCommand.ts │ │ │ │ │ ├── getServerWideTaskInfoCommand.ts │ │ │ │ │ ├── saveServerWideBackupCommand.ts │ │ │ │ │ ├── saveServerWideExternalReplicationCommand.ts │ │ │ │ │ └── toggleServerWideTaskCommand.ts │ │ │ │ └── testPeriodicBackupCredentialsCommand.ts │ │ │ ├── version │ │ │ │ └── getLatestVersionInfoCommand.ts │ │ │ └── wizard │ │ │ │ ├── checkDomainAvailabilityCommand.ts │ │ │ │ ├── claimDomainCommand.ts │ │ │ │ ├── continueSecureClusterConfigurationCommand.ts │ │ │ │ ├── continueUnsecureClusterConfigurationCommand.ts │ │ │ │ ├── extractNodesInfoFromPackageCommand.ts │ │ │ │ ├── finishSetupCommand.ts │ │ │ │ ├── getIpsInfoCommand.ts │ │ │ │ ├── getSetupLocalNodeIpsCommand.ts │ │ │ │ ├── getSetupParametersCommand.ts │ │ │ │ ├── listHostsForCertificateCommand.ts │ │ │ │ ├── loadAgreementCommand.ts │ │ │ │ └── registrationInfoCommand.ts │ │ ├── common │ │ │ ├── __mocks__ │ │ │ │ ├── eventsCollector.ts │ │ │ │ └── versionProvider.ts │ │ │ ├── abstractNotificationCenterClient.ts │ │ │ ├── abstractWebSocketClient.ts │ │ │ ├── adminLogsWebSocketClient.ts │ │ │ ├── appUrl.ts │ │ │ ├── autoComplete │ │ │ │ ├── cachedMetadataProvider.ts │ │ │ │ ├── proxyMetadataProvider.ts │ │ │ │ └── remoteMetadataProvider.ts │ │ │ ├── autoCompleterSupport.ts │ │ │ ├── awesomeMultiselect.ts │ │ │ ├── bindingHelpers │ │ │ │ ├── __mocks__ │ │ │ │ │ └── aceEditorBindingHandler.ts │ │ │ │ ├── aceEditorBindingHandler.ts │ │ │ │ ├── autoCompleteBindingHandler.ts │ │ │ │ ├── datePickerBindingHandler.ts │ │ │ │ └── helpBindingHandler.ts │ │ │ ├── certificateUtils.ts │ │ │ ├── changeSubscription.ts │ │ │ ├── changeVectorUtils.ts │ │ │ ├── changesApi.ts │ │ │ ├── changesCallback.ts │ │ │ ├── changesContext.ts │ │ │ ├── chunkFetcher.ts │ │ │ ├── clusterDashboardWebSocketClient.ts │ │ │ ├── colorsManager.ts │ │ │ ├── constants │ │ │ │ └── events.ts │ │ │ ├── copyToClipboard.ts │ │ │ ├── cssGenerator.ts │ │ │ ├── databaseNotificationCenterClient.ts │ │ │ ├── dbLiveIOStatsWebSocketClient.ts │ │ │ ├── defaultAceCompleter.ts │ │ │ ├── developmentHelper.ts │ │ │ ├── dialogResult.ts │ │ │ ├── downloader.ts │ │ │ ├── eula │ │ │ │ └── routes.ts │ │ │ ├── eventsCollector.ts │ │ │ ├── eventsWebSocketClient.ts │ │ │ ├── extensions.ts │ │ │ ├── fileDownloader.ts │ │ │ ├── fileImporter.ts │ │ │ ├── generalUtils.ts │ │ │ ├── helpers │ │ │ │ ├── database │ │ │ │ │ ├── collectionsTracker.ts │ │ │ │ │ ├── documentHelpers.spec.ts │ │ │ │ │ ├── documentHelpers.ts │ │ │ │ │ ├── documentPropertyProvider.ts │ │ │ │ │ ├── genericProgress.ts │ │ │ │ │ ├── serverTime.ts │ │ │ │ │ └── sqlConnectionStringSyntax.ts │ │ │ │ ├── graph │ │ │ │ │ ├── canvasIcons.ts │ │ │ │ │ ├── gapFinder.ts │ │ │ │ │ ├── graphHelper.spec.ts │ │ │ │ │ ├── graphHelper.ts │ │ │ │ │ ├── inProgressAnimator.ts │ │ │ │ │ ├── rangeAggregator.spec.ts │ │ │ │ │ └── rangeAggregator.ts │ │ │ │ ├── text │ │ │ │ │ ├── aceDiff.ts │ │ │ │ │ └── pluralizeHelpers.ts │ │ │ │ └── view │ │ │ │ │ ├── icomoonHelpers.ts │ │ │ │ │ └── viewHelpers.ts │ │ │ ├── inputCursor.ts │ │ │ ├── jsonUtil.ts │ │ │ ├── liveEtlStatsWebSocketClient.ts │ │ │ ├── liveIOStatsWebSocketClient.ts │ │ │ ├── liveIndexPerformanceWebSocketClient.ts │ │ │ ├── liveQueueSinkStatsWebSocketClient.ts │ │ │ ├── liveReplicationStatsWebSocketClient.ts │ │ │ ├── liveSubscriptionStatsWebSocketClient.ts │ │ │ ├── messagePublisher.ts │ │ │ ├── notifications │ │ │ │ ├── models │ │ │ │ │ ├── abstractNotification.ts │ │ │ │ │ ├── alert.ts │ │ │ │ │ ├── attachmentUpload.ts │ │ │ │ │ ├── groupedVirtualNotification.ts │ │ │ │ │ ├── operation.ts │ │ │ │ │ ├── performanceHint.ts │ │ │ │ │ ├── recentError.ts │ │ │ │ │ ├── recentLicenseLimitError.ts │ │ │ │ │ ├── virtualBulkInsert.ts │ │ │ │ │ ├── virtualBulkInsertFailures.ts │ │ │ │ │ ├── virtualDeleteByQuery.ts │ │ │ │ │ ├── virtualDeleteByQueryFailures.ts │ │ │ │ │ ├── virtualNotification.ts │ │ │ │ │ ├── virtualUpdateByQuery.ts │ │ │ │ │ └── virtualUpdateByQueryFailures.ts │ │ │ │ ├── notificationCenter.ts │ │ │ │ ├── notificationCenterOperationsWatch.ts │ │ │ │ ├── notificationCenterSettings.ts │ │ │ │ ├── protractedCommandsDetector.ts │ │ │ │ └── requestExecution.ts │ │ │ ├── popoverUtils.ts │ │ │ ├── queryUtil.spec.ts │ │ │ ├── queryUtil.ts │ │ │ ├── reactUtils.ts │ │ │ ├── reactViewModelUtils.ts │ │ │ ├── rqlLanguageService.ts │ │ │ ├── runningQueriesWebSocketClient.ts │ │ │ ├── serverNotificationCenterClient.ts │ │ │ ├── serverWideLiveIOStatsWebSocketClient.ts │ │ │ ├── settings │ │ │ │ ├── abstractSettings.ts │ │ │ │ ├── databaseSettings.ts │ │ │ │ ├── dontShowAgainSettings.ts │ │ │ │ ├── globalSettings.ts │ │ │ │ ├── serverSettings.ts │ │ │ │ ├── simpleStudioSetting.ts │ │ │ │ ├── studioSetting.ts │ │ │ │ └── studioSettings.ts │ │ │ ├── setup │ │ │ │ └── routes.ts │ │ │ ├── shell │ │ │ │ ├── accessManager.ts │ │ │ │ ├── activeDatabaseTracker.ts │ │ │ │ ├── clusterTopologyManager.ts │ │ │ │ ├── continueTest.ts │ │ │ │ ├── databasesManager.spec.ts │ │ │ │ ├── databasesManager.ts │ │ │ │ ├── favNodeBadge.ts │ │ │ │ ├── footer.ts │ │ │ │ ├── menu.ts │ │ │ │ ├── menu │ │ │ │ │ ├── collectionMenuItem.ts │ │ │ │ │ ├── generateMenuItems.ts │ │ │ │ │ ├── intermediateMenuItem.ts │ │ │ │ │ ├── items │ │ │ │ │ │ ├── databases.ts │ │ │ │ │ │ ├── documents.ts │ │ │ │ │ │ ├── indexes.ts │ │ │ │ │ │ ├── manageServer.ts │ │ │ │ │ │ ├── rootItems.ts │ │ │ │ │ │ ├── settings.ts │ │ │ │ │ │ ├── stats.ts │ │ │ │ │ │ └── tasks.ts │ │ │ │ │ ├── leafMenuItem.ts │ │ │ │ │ └── separatorMenuItem.ts │ │ │ │ ├── routerConfiguration.ts │ │ │ │ └── routes.ts │ │ │ ├── storage │ │ │ │ ├── convertedIndexesToStaticStorage.ts │ │ │ │ ├── lastUsedAutocomplete.ts │ │ │ │ ├── mergedIndexesStorage.ts │ │ │ │ ├── savedPatchesStorage.ts │ │ │ │ ├── savedQueriesStorage.ts │ │ │ │ ├── serverBuildReminder.ts │ │ │ │ ├── starredDocumentsStorage.ts │ │ │ │ └── storageKeyProvider.ts │ │ │ ├── svgDownloader.ts │ │ │ ├── tableNavigationTrait.ts │ │ │ ├── threadsInfoWebSocketClient.ts │ │ │ ├── timeHelpers.ts │ │ │ ├── timingsChart.ts │ │ │ ├── trafficWatchWebSocketClient.ts │ │ │ ├── twoFactorHelper.ts │ │ │ ├── typeUtils.spec.ts │ │ │ ├── typeUtils.ts │ │ │ └── versionProvider.ts │ │ ├── components │ │ │ ├── common │ │ │ │ ├── AboutView.scss │ │ │ │ ├── AboutView.stories.tsx │ │ │ │ ├── AboutView.tsx │ │ │ │ ├── AceEditor.scss │ │ │ │ ├── AceEditor.spec.tsx │ │ │ │ ├── AceEditor.stories.tsx │ │ │ │ ├── AceEditor.tsx │ │ │ │ ├── Background.scss │ │ │ │ ├── BadgesVariants.stories.tsx │ │ │ │ ├── ButtonGroupWithLabel.stories.tsx │ │ │ │ ├── ButtonGroupWithLabel.tsx │ │ │ │ ├── ButtonVariants.stories.tsx │ │ │ │ ├── ButtonWithSpinner.tsx │ │ │ │ ├── Buttons.scss │ │ │ │ ├── Check.stories.tsx │ │ │ │ ├── Checkbox.scss │ │ │ │ ├── Checkbox.tsx │ │ │ │ ├── CheckboxSelectAll.tsx │ │ │ │ ├── CheckboxTriple.tsx │ │ │ │ ├── Code.scss │ │ │ │ ├── Code.tsx │ │ │ │ ├── ConditionalPopover.tsx │ │ │ │ ├── ConfirmDialog.tsx │ │ │ │ ├── CounterBadge.stories.tsx │ │ │ │ ├── CounterBadge.tsx │ │ │ │ ├── DatabaseGroup.scss │ │ │ │ ├── DatabaseGroup.tsx │ │ │ │ ├── DatePicker.stories.tsx │ │ │ │ ├── DatePicker.tsx │ │ │ │ ├── DropdownPanel.stories.tsx │ │ │ │ ├── DropdownPanel.tsx │ │ │ │ ├── DurationPicker.stories.tsx │ │ │ │ ├── DurationPicker.tsx │ │ │ │ ├── EmptySet.scss │ │ │ │ ├── EmptySet.stories.tsx │ │ │ │ ├── EmptySet.tsx │ │ │ │ ├── FeatureAvailabilitySummary.scss │ │ │ │ ├── FeatureAvailabilitySummary.spec.tsx │ │ │ │ ├── FeatureAvailabilitySummary.stories.tsx │ │ │ │ ├── FeatureAvailabilitySummary.tsx │ │ │ │ ├── FeatureNotAvailable.stories.tsx │ │ │ │ ├── FeatureNotAvailable.tsx │ │ │ │ ├── FeatureNotAvailableInYourLicensePopover.tsx │ │ │ │ ├── FileDropzone.scss │ │ │ │ ├── FileDropzone.tsx │ │ │ │ ├── FlexGrow.tsx │ │ │ │ ├── Form.spec.tsx │ │ │ │ ├── Form.stories.tsx │ │ │ │ ├── Form.tsx │ │ │ │ ├── FormCollectionsSelect.tsx │ │ │ │ ├── FormEncryption.tsx │ │ │ │ ├── HStack.tsx │ │ │ │ ├── HrHeader.scss │ │ │ │ ├── HrHeader.stories.tsx │ │ │ │ ├── HrHeader.tsx │ │ │ │ ├── Icon.scss │ │ │ │ ├── Icon.tsx │ │ │ │ ├── LazyLoad.scss │ │ │ │ ├── LazyLoad.stories.tsx │ │ │ │ ├── LazyLoad.tsx │ │ │ │ ├── LicenseRestrictedBadge.tsx │ │ │ │ ├── LicenseRestrictedMessage.tsx │ │ │ │ ├── LoadError.tsx │ │ │ │ ├── LoadingView.tsx │ │ │ │ ├── LocationDistribution.scss │ │ │ │ ├── LocationDistribution.stories.tsx │ │ │ │ ├── LocationDistribution.tsx │ │ │ │ ├── LocationSpecificDetails.scss │ │ │ │ ├── LocationSpecificDetails.stories.tsx │ │ │ │ ├── LocationSpecificDetails.tsx │ │ │ │ ├── MultipleDatabaseLocationSelector.stories.tsx │ │ │ │ ├── MultipleDatabaseLocationSelector.tsx │ │ │ │ ├── NamedProgress.scss │ │ │ │ ├── NamedProgress.tsx │ │ │ │ ├── NodeSet.scss │ │ │ │ ├── NodeSet.stories.tsx │ │ │ │ ├── NodeSet.tsx │ │ │ │ ├── Pagination.scss │ │ │ │ ├── Pagination.stories.tsx │ │ │ │ ├── Pagination.tsx │ │ │ │ ├── PopoverWithHover.tsx │ │ │ │ ├── ProgressCircle.scss │ │ │ │ ├── ProgressCircle.stories.tsx │ │ │ │ ├── ProgressCircle.tsx │ │ │ │ ├── PropSummary.scss │ │ │ │ ├── PropSummary.stories.tsx │ │ │ │ ├── PropSummary.tsx │ │ │ │ ├── ReactDatepicker.scss │ │ │ │ ├── RichAlert.stories.tsx │ │ │ │ ├── RichAlert.tsx │ │ │ │ ├── RichPanel.scss │ │ │ │ ├── RichPanel.stories.tsx │ │ │ │ ├── RichPanel.tsx │ │ │ │ ├── RunScriptButton.tsx │ │ │ │ ├── SelectionActions.scss │ │ │ │ ├── SelectionActions.tsx │ │ │ │ ├── SingleDatabaseLocationSelector.stories.tsx │ │ │ │ ├── SingleDatabaseLocationSelector.tsx │ │ │ │ ├── SizeGetter.stories.tsx │ │ │ │ ├── SizeGetter.tsx │ │ │ │ ├── Sort.stories.tsx │ │ │ │ ├── SortDropdown.scss │ │ │ │ ├── SortDropdown.tsx │ │ │ │ ├── Spinners.stories.tsx │ │ │ │ ├── SplashScreen.scss │ │ │ │ ├── SplashScreen.stories.tsx │ │ │ │ ├── SplashScreen.tsx │ │ │ │ ├── StatePill.stories.tsx │ │ │ │ ├── StatePill.tsx │ │ │ │ ├── StickyHeader.scss │ │ │ │ ├── StickyHeader.stories.tsx │ │ │ │ ├── StickyHeader.tsx │ │ │ │ ├── Type.scss │ │ │ │ ├── Type.stories.tsx │ │ │ │ ├── clientConfiguration │ │ │ │ │ ├── ClientConfigurationUtils.ts │ │ │ │ │ ├── ClientConfigurationValidation.ts │ │ │ │ │ ├── useClientConfigurationFormSideEffects.tsx │ │ │ │ │ └── useClientConfigurationPopovers.tsx │ │ │ │ ├── connectionTests │ │ │ │ │ ├── ConnectionTestError.tsx │ │ │ │ │ └── ConnectionTestResult.tsx │ │ │ │ ├── customAnalyzers │ │ │ │ │ ├── DeleteCustomAnalyzerConfirm.tsx │ │ │ │ │ ├── editCustomAnalyzerValidation.ts │ │ │ │ │ └── useCustomAnalyzers.ts │ │ │ │ ├── customSorters │ │ │ │ │ ├── DeleteCustomSorterConfirm.tsx │ │ │ │ │ ├── editCustomSorterValidation.ts │ │ │ │ │ └── useCustomSorters.ts │ │ │ │ ├── formDestinations │ │ │ │ │ ├── AmazonGlacier.tsx │ │ │ │ │ ├── AmazonS3.tsx │ │ │ │ │ ├── Azure.tsx │ │ │ │ │ ├── FormDestinationList.tsx │ │ │ │ │ ├── Ftp.tsx │ │ │ │ │ ├── GoogleCloud.tsx │ │ │ │ │ ├── Local.tsx │ │ │ │ │ ├── OverrideConfiguration.tsx │ │ │ │ │ └── utils │ │ │ │ │ │ ├── formDestinationsMapsFromDto.ts │ │ │ │ │ │ ├── formDestinationsMapsToDto.ts │ │ │ │ │ │ ├── formDestinationsTypes.ts │ │ │ │ │ │ └── formDestinationsValidation.ts │ │ │ │ ├── pathSelector │ │ │ │ │ ├── PathSelector.spec.tsx │ │ │ │ │ ├── PathSelector.stories.tsx │ │ │ │ │ └── PathSelector.tsx │ │ │ │ ├── select │ │ │ │ │ ├── Select.scss │ │ │ │ │ ├── Select.stories.tsx │ │ │ │ │ ├── Select.tsx │ │ │ │ │ └── SelectCreatable.tsx │ │ │ │ ├── shell │ │ │ │ │ ├── accessManagerSlice.ts │ │ │ │ │ ├── accessManagerSliceSelectors.ts │ │ │ │ │ ├── clusterSlice.ts │ │ │ │ │ ├── collectionsTrackerSlice.ts │ │ │ │ │ ├── databaseSliceActions.ts │ │ │ │ │ ├── databaseSliceSelectors.ts │ │ │ │ │ ├── databasesSlice.ts │ │ │ │ │ ├── licenseSlice.ts │ │ │ │ │ └── setup.ts │ │ │ │ ├── steps │ │ │ │ │ ├── Steps.scss │ │ │ │ │ ├── Steps.stories.tsx │ │ │ │ │ ├── Steps.tsx │ │ │ │ │ └── useSteps.ts │ │ │ │ ├── studioConfiguration │ │ │ │ │ └── StudioConfigurationUtils.ts │ │ │ │ ├── toggles │ │ │ │ │ ├── MultiCheckboxToggle.tsx │ │ │ │ │ ├── MultiRadioToggle.tsx │ │ │ │ │ ├── RadioToggle.tsx │ │ │ │ │ ├── Toggles.scss │ │ │ │ │ ├── Toggles.stories.tsx │ │ │ │ │ └── partials │ │ │ │ │ │ ├── ToggleItemLabel.tsx │ │ │ │ │ │ └── ToggleLimitBadge.tsx │ │ │ │ └── virtualTable │ │ │ │ │ ├── VirtualTable.scss │ │ │ │ │ ├── VirtualTable.stories.tsx │ │ │ │ │ ├── VirtualTable.tsx │ │ │ │ │ ├── VirtualTableWithLazyLoading.tsx │ │ │ │ │ ├── cells │ │ │ │ │ ├── CellDocumentPreview.tsx │ │ │ │ │ ├── CellDocumentValue.tsx │ │ │ │ │ ├── CellValue.tsx │ │ │ │ │ └── CellWithCopy.tsx │ │ │ │ │ ├── columnProviders │ │ │ │ │ └── useDocumentColumnsProvider.tsx │ │ │ │ │ ├── commonComponents │ │ │ │ │ └── columnsSelect │ │ │ │ │ │ ├── TableDisplaySettings.scss │ │ │ │ │ │ ├── TableDisplaySettings.tsx │ │ │ │ │ │ └── useTableDisplaySettings.ts │ │ │ │ │ ├── hooks │ │ │ │ │ ├── useVirtualTableWithLazyLoading.ts │ │ │ │ │ └── useVirtualTableWithToken.ts │ │ │ │ │ ├── partials │ │ │ │ │ ├── VirtualTableBodyWrapper.tsx │ │ │ │ │ ├── VirtualTableColumnSettings.tsx │ │ │ │ │ ├── VirtualTableHead.scss │ │ │ │ │ ├── VirtualTableHead.tsx │ │ │ │ │ └── VirtualTableState.tsx │ │ │ │ │ └── utils │ │ │ │ │ ├── commonColumnDefs.tsx │ │ │ │ │ ├── documentColumnDefs.tsx │ │ │ │ │ ├── virtualTableConstants.ts │ │ │ │ │ └── virtualTableUtils.ts │ │ │ ├── hooks │ │ │ │ ├── __mocks__ │ │ │ │ │ └── useEventsCollector.ts │ │ │ │ ├── hooksForAutoMock.json │ │ │ │ ├── types.ts │ │ │ │ ├── useAppUrls.ts │ │ │ │ ├── useAsyncDebounce.ts │ │ │ │ ├── useBoolean.ts │ │ │ │ ├── useChanges.tsx │ │ │ │ ├── useCheckboxes.ts │ │ │ │ ├── useDirtyFlag.tsx │ │ │ │ ├── useDraggableItem.ts │ │ │ │ ├── useEventsCollector.ts │ │ │ │ ├── useInterval.ts │ │ │ │ ├── useIsomorphicLayoutEffect.ts │ │ │ │ ├── useOS.ts │ │ │ │ ├── useOmniSearch.ts │ │ │ │ ├── useRavenLink.ts │ │ │ │ ├── useServices.tsx │ │ │ │ ├── useTimeout.ts │ │ │ │ └── useUniqueId.ts │ │ │ ├── models │ │ │ │ ├── aceEditor.ts │ │ │ │ ├── common.ts │ │ │ │ ├── databases.ts │ │ │ │ ├── indexes.ts │ │ │ │ └── tasks.ts │ │ │ ├── pages │ │ │ │ ├── BootstrapPlaygroundPage.tsx │ │ │ │ ├── database │ │ │ │ │ ├── indexes │ │ │ │ │ │ ├── cleanup │ │ │ │ │ │ │ ├── IndexCleanup.spec.tsx │ │ │ │ │ │ │ ├── IndexCleanup.stories.tsx │ │ │ │ │ │ │ ├── IndexCleanup.tsx │ │ │ │ │ │ │ ├── IndexCleanupAboutView.tsx │ │ │ │ │ │ │ ├── carouselCards │ │ │ │ │ │ │ │ ├── MergeIndexesCard.tsx │ │ │ │ │ │ │ │ ├── MergeSuggestionsErrorsCarouselCard.tsx │ │ │ │ │ │ │ │ ├── RemoveSubindexesCard.tsx │ │ │ │ │ │ │ │ ├── RemoveUnusedIndexesCard.tsx │ │ │ │ │ │ │ │ └── UnmergableIndexesCard.tsx │ │ │ │ │ │ │ ├── navItems │ │ │ │ │ │ │ │ ├── MergeIndexesNavItem.tsx │ │ │ │ │ │ │ │ ├── MergeSuggestionsErrorsNavItem.tsx │ │ │ │ │ │ │ │ ├── RemoveSubindexesNavItem.tsx │ │ │ │ │ │ │ │ ├── RemoveUnusedIndexesNavItem.tsx │ │ │ │ │ │ │ │ └── UnmergableIndexesNavItem.tsx │ │ │ │ │ │ │ └── useIndexCleanup.tsx │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── BulkIndexOperationConfirm.tsx │ │ │ │ │ │ │ ├── ConfirmResetIndexes.tsx │ │ │ │ │ │ │ ├── ConfirmSwapSideBySideIndex.tsx │ │ │ │ │ │ │ ├── IndexDistribution.tsx │ │ │ │ │ │ │ ├── IndexDistributionStatusChecker.spec.ts │ │ │ │ │ │ │ ├── IndexDistributionStatusChecker.ts │ │ │ │ │ │ │ ├── IndexFilter.tsx │ │ │ │ │ │ │ ├── IndexGlobalIndexing.tsx │ │ │ │ │ │ │ ├── IndexPanel.tsx │ │ │ │ │ │ │ ├── IndexProgressTooltip.tsx │ │ │ │ │ │ │ ├── IndexSelectActions.tsx │ │ │ │ │ │ │ ├── IndexesPage.scss │ │ │ │ │ │ │ ├── IndexesPage.spec.tsx │ │ │ │ │ │ │ ├── IndexesPage.stories.tsx │ │ │ │ │ │ │ ├── IndexesPage.tsx │ │ │ │ │ │ │ ├── IndexesPageAboutView.tsx │ │ │ │ │ │ │ ├── IndexesPageLicenseLimits.tsx │ │ │ │ │ │ │ ├── IndexesPageList.tsx │ │ │ │ │ │ │ ├── IndexesStatsReducer.ts │ │ │ │ │ │ │ ├── migration │ │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ │ ├── IndexToMigrateTitle.tsx │ │ │ │ │ │ │ │ │ └── IndexesImportExport.scss │ │ │ │ │ │ │ │ ├── export │ │ │ │ │ │ │ │ │ ├── ExportIndexes.tsx │ │ │ │ │ │ │ │ │ ├── ExportIndexesList.tsx │ │ │ │ │ │ │ │ │ └── ExportIndexesListItem.tsx │ │ │ │ │ │ │ │ └── import │ │ │ │ │ │ │ │ │ ├── ImportIndexListItem.tsx │ │ │ │ │ │ │ │ │ ├── ImportIndexes.tsx │ │ │ │ │ │ │ │ │ └── ImportIndexesList.tsx │ │ │ │ │ │ │ ├── partials │ │ │ │ │ │ │ │ ├── NoIndexes.tsx │ │ │ │ │ │ │ │ └── ResetIndexesButton.tsx │ │ │ │ │ │ │ └── useIndexesPage.tsx │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ └── DeleteIndexesConfirmBody.tsx │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── clientConfiguration │ │ │ │ │ │ │ ├── ClientDatabaseConfiguration.spec.tsx │ │ │ │ │ │ │ ├── ClientDatabaseConfiguration.stories.tsx │ │ │ │ │ │ │ └── ClientDatabaseConfiguration.tsx │ │ │ │ │ │ ├── conflictResolution │ │ │ │ │ │ │ ├── ConflictResolution.spec.tsx │ │ │ │ │ │ │ ├── ConflictResolution.stories.tsx │ │ │ │ │ │ │ ├── ConflictResolution.tsx │ │ │ │ │ │ │ ├── ConflictResolutionAboutView.tsx │ │ │ │ │ │ │ ├── ConflictResolutionConfigPanel.tsx │ │ │ │ │ │ │ ├── EditConflictResolutionSyntaxModal.tsx │ │ │ │ │ │ │ └── store │ │ │ │ │ │ │ │ └── conflictResolutionSlice.ts │ │ │ │ │ │ ├── connectionStrings │ │ │ │ │ │ │ ├── ConnectionStrings.spec.tsx │ │ │ │ │ │ │ ├── ConnectionStrings.stories.tsx │ │ │ │ │ │ │ ├── ConnectionStrings.tsx │ │ │ │ │ │ │ ├── ConnectionStringsInfoHub.tsx │ │ │ │ │ │ │ ├── ConnectionStringsPanel.tsx │ │ │ │ │ │ │ ├── ConnectionStringsPanels.tsx │ │ │ │ │ │ │ ├── EditConnectionStrings.tsx │ │ │ │ │ │ │ ├── connectionStringsTypes.ts │ │ │ │ │ │ │ ├── editForms │ │ │ │ │ │ │ │ ├── AzureQueueStorageConnectionString.tsx │ │ │ │ │ │ │ │ ├── ElasticSearchCertificate.tsx │ │ │ │ │ │ │ │ ├── ElasticSearchConnectionString.tsx │ │ │ │ │ │ │ │ ├── KafkaConnectionString.tsx │ │ │ │ │ │ │ │ ├── OlapConnectionString.tsx │ │ │ │ │ │ │ │ ├── RabbitMqConnectionString.tsx │ │ │ │ │ │ │ │ ├── RavenConnectionString.tsx │ │ │ │ │ │ │ │ ├── SqlConnectionString.tsx │ │ │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ │ │ └── ConnectionStringUsedByTasks.tsx │ │ │ │ │ │ │ ├── store │ │ │ │ │ │ │ │ ├── connectionStringsMapsFromDto.ts │ │ │ │ │ │ │ │ ├── connectionStringsMapsToDto.ts │ │ │ │ │ │ │ │ ├── connectionStringsMiddleware.ts │ │ │ │ │ │ │ │ └── connectionStringsSlice.ts │ │ │ │ │ │ │ └── useConnectionStringsLicense.ts │ │ │ │ │ │ ├── customAnalyzers │ │ │ │ │ │ │ ├── DatabaseCustomAnalyzers.spec.tsx │ │ │ │ │ │ │ ├── DatabaseCustomAnalyzers.stories.tsx │ │ │ │ │ │ │ ├── DatabaseCustomAnalyzers.tsx │ │ │ │ │ │ │ ├── DatabaseCustomAnalyzersInfoHub.tsx │ │ │ │ │ │ │ ├── DatabaseCustomAnalyzersList.tsx │ │ │ │ │ │ │ ├── DatabaseCustomAnalyzersListItem.tsx │ │ │ │ │ │ │ └── DatabaseCustomAnalyzersServerWideList.tsx │ │ │ │ │ │ ├── customSorters │ │ │ │ │ │ │ ├── DatabaseCustomSorterTest.tsx │ │ │ │ │ │ │ ├── DatabaseCustomSorterTestResult.tsx │ │ │ │ │ │ │ ├── DatabaseCustomSorters.spec.tsx │ │ │ │ │ │ │ ├── DatabaseCustomSorters.stories.tsx │ │ │ │ │ │ │ ├── DatabaseCustomSorters.tsx │ │ │ │ │ │ │ ├── DatabaseCustomSortersInfoHub.tsx │ │ │ │ │ │ │ ├── DatabaseCustomSortersList.tsx │ │ │ │ │ │ │ ├── DatabaseCustomSortersListItem.tsx │ │ │ │ │ │ │ ├── DatabaseCustomSortersServerWideList.tsx │ │ │ │ │ │ │ └── DatabaseCustomSortersServerWideListItem.tsx │ │ │ │ │ │ ├── dataArchival │ │ │ │ │ │ │ ├── DataArchival.spec.tsx │ │ │ │ │ │ │ ├── DataArchival.stories.tsx │ │ │ │ │ │ │ ├── DataArchival.tsx │ │ │ │ │ │ │ └── DataArchivalValidation.ts │ │ │ │ │ │ ├── databaseRecord │ │ │ │ │ │ │ ├── DatabaseRecord.spec.tsx │ │ │ │ │ │ │ ├── DatabaseRecord.stories.tsx │ │ │ │ │ │ │ ├── DatabaseRecord.tsx │ │ │ │ │ │ │ └── DatabaseRecordAboutView.tsx │ │ │ │ │ │ ├── documentCompression │ │ │ │ │ │ │ ├── DocumentCompression.spec.tsx │ │ │ │ │ │ │ ├── DocumentCompression.stories.tsx │ │ │ │ │ │ │ └── DocumentCompression.tsx │ │ │ │ │ │ ├── documentExpiration │ │ │ │ │ │ │ ├── DocumentExpiration.spec.tsx │ │ │ │ │ │ │ ├── DocumentExpiration.stories.tsx │ │ │ │ │ │ │ ├── DocumentExpiration.tsx │ │ │ │ │ │ │ └── DocumentExpirationValidation.ts │ │ │ │ │ │ ├── documentRefresh │ │ │ │ │ │ │ ├── DocumentRefresh.spec.tsx │ │ │ │ │ │ │ ├── DocumentRefresh.stories.tsx │ │ │ │ │ │ │ ├── DocumentRefresh.tsx │ │ │ │ │ │ │ └── DocumentRefreshValidation.ts │ │ │ │ │ │ ├── documentRevisions │ │ │ │ │ │ │ ├── DocumentRevisions.spec.tsx │ │ │ │ │ │ │ ├── DocumentRevisions.stories.tsx │ │ │ │ │ │ │ ├── DocumentRevisions.tsx │ │ │ │ │ │ │ ├── DocumentRevisionsConfigPanel.tsx │ │ │ │ │ │ │ ├── DocumentRevisionsSelectActions.tsx │ │ │ │ │ │ │ ├── DocumentRevisionsValidation.ts │ │ │ │ │ │ │ ├── EditRevision.tsx │ │ │ │ │ │ │ ├── EnforceConfiguration.tsx │ │ │ │ │ │ │ ├── revertRevisions │ │ │ │ │ │ │ │ ├── RevertRevisions.spec.tsx │ │ │ │ │ │ │ │ ├── RevertRevisions.stories.tsx │ │ │ │ │ │ │ │ ├── RevertRevisions.tsx │ │ │ │ │ │ │ │ └── RevertRevisionsValidation.ts │ │ │ │ │ │ │ ├── store │ │ │ │ │ │ │ │ ├── documentRevisionsSlice.ts │ │ │ │ │ │ │ │ └── documentRevisionsSliceSelectors.ts │ │ │ │ │ │ │ └── useEditRevisionFormSideEffects.ts │ │ │ │ │ │ ├── integrations │ │ │ │ │ │ │ ├── Integrations.spec.tsx │ │ │ │ │ │ │ ├── Integrations.stories.tsx │ │ │ │ │ │ │ ├── Integrations.tsx │ │ │ │ │ │ │ ├── IntegrationsAddNewButton.tsx │ │ │ │ │ │ │ ├── IntegrationsAlerts.tsx │ │ │ │ │ │ │ ├── IntegrationsInfoHub.tsx │ │ │ │ │ │ │ ├── IntegrationsUserList.tsx │ │ │ │ │ │ │ ├── IntegrationsUserListItem.tsx │ │ │ │ │ │ │ └── useIntegrations.ts │ │ │ │ │ │ ├── studioConfiguration │ │ │ │ │ │ │ ├── StudioDatabaseConfiguration.spec.tsx │ │ │ │ │ │ │ ├── StudioDatabaseConfiguration.stories.tsx │ │ │ │ │ │ │ ├── StudioDatabaseConfiguration.tsx │ │ │ │ │ │ │ └── StudioDatabaseConfigurationValidation.ts │ │ │ │ │ │ ├── tombstones │ │ │ │ │ │ │ ├── TombstonesAlert.tsx │ │ │ │ │ │ │ ├── TombstonesState.spec.tsx │ │ │ │ │ │ │ ├── TombstonesState.stories.tsx │ │ │ │ │ │ │ ├── TombstonesState.tsx │ │ │ │ │ │ │ └── useTombstonesStateColumns.tsx │ │ │ │ │ │ └── unusedDatabaseIds │ │ │ │ │ │ │ ├── UnusedDatabaseIds.scss │ │ │ │ │ │ │ ├── UnusedDatabaseIds.spec.tsx │ │ │ │ │ │ │ ├── UnusedDatabaseIds.stories.tsx │ │ │ │ │ │ │ ├── UnusedDatabaseIds.tsx │ │ │ │ │ │ │ ├── partials │ │ │ │ │ │ │ ├── PotentialUnusedId.tsx │ │ │ │ │ │ │ ├── PotentialUnusedIdList.tsx │ │ │ │ │ │ │ ├── UnusedDatabaseIdsAboutView.tsx │ │ │ │ │ │ │ ├── UnusedIdsForm.tsx │ │ │ │ │ │ │ └── UsedId.tsx │ │ │ │ │ │ │ └── useUnusedDatabaseIds.ts │ │ │ │ │ ├── status │ │ │ │ │ │ └── statistics │ │ │ │ │ │ │ ├── StatisticsPage.spec.tsx │ │ │ │ │ │ │ ├── StatisticsPage.stories.tsx │ │ │ │ │ │ │ ├── StatisticsPage.tsx │ │ │ │ │ │ │ ├── partials │ │ │ │ │ │ │ ├── DetailedDatabaseStats.tsx │ │ │ │ │ │ │ ├── EssentialDatabaseStatsComponent.tsx │ │ │ │ │ │ │ ├── IndexesDatabaseStats.tsx │ │ │ │ │ │ │ └── StatsHeader.tsx │ │ │ │ │ │ │ └── store │ │ │ │ │ │ │ ├── models.d.ts │ │ │ │ │ │ │ └── statisticsViewSlice.ts │ │ │ │ │ └── tasks │ │ │ │ │ │ ├── backups │ │ │ │ │ │ ├── BackupsPage.spec.tsx │ │ │ │ │ │ ├── BackupsPage.stories.tsx │ │ │ │ │ │ └── BackupsPage.tsx │ │ │ │ │ │ ├── createSampleData │ │ │ │ │ │ ├── CreateSampleData.scss │ │ │ │ │ │ ├── CreateSampleData.spec.tsx │ │ │ │ │ │ ├── CreateSampleData.stories.tsx │ │ │ │ │ │ ├── CreateSampleData.tsx │ │ │ │ │ │ └── CreateSampleDataSmoke.tsx │ │ │ │ │ │ ├── ongoingTasks │ │ │ │ │ │ ├── OngoingEtlTaskProgressTooltip.tsx │ │ │ │ │ │ ├── OngoingTaskAddModal.tsx │ │ │ │ │ │ ├── OngoingTaskPage.scss │ │ │ │ │ │ ├── OngoingTaskProgressProvider.tsx │ │ │ │ │ │ ├── OngoingTaskSelectActions.tsx │ │ │ │ │ │ ├── OngoingTasksFilter.tsx │ │ │ │ │ │ ├── OngoingTasksPage.spec.tsx │ │ │ │ │ │ ├── OngoingTasksPage.stories.tsx │ │ │ │ │ │ ├── OngoingTasksPage.tsx │ │ │ │ │ │ ├── OngoingTasksReducer.ts │ │ │ │ │ │ └── panels │ │ │ │ │ │ │ ├── AzureQueueStorageEtlPanel.tsx │ │ │ │ │ │ │ ├── ElasticSearchEtlPanel.tsx │ │ │ │ │ │ │ ├── ExternalReplicationPanel.tsx │ │ │ │ │ │ │ ├── KafkaEtlPanel.tsx │ │ │ │ │ │ │ ├── KafkaSinkPanel.tsx │ │ │ │ │ │ │ ├── OlapEtlPanel.tsx │ │ │ │ │ │ │ ├── OngoingEtlTaskDistribution.tsx │ │ │ │ │ │ │ ├── PeriodicBackupPanel.tsx │ │ │ │ │ │ │ ├── RabbitMqEtlPanel.tsx │ │ │ │ │ │ │ ├── RabbitMqSinkPanel.tsx │ │ │ │ │ │ │ ├── RavenEtlPanel.tsx │ │ │ │ │ │ │ ├── ReplicationHubConnectedSinkPanel.tsx │ │ │ │ │ │ │ ├── ReplicationHubDefinitionPanel.tsx │ │ │ │ │ │ │ ├── ReplicationSinkPanel.tsx │ │ │ │ │ │ │ ├── SqlEtlPanel.tsx │ │ │ │ │ │ │ ├── SubscriptionPanel.tsx │ │ │ │ │ │ │ └── SubscriptionTaskDistribution.tsx │ │ │ │ │ │ └── shared │ │ │ │ │ │ ├── OngoingTaskOperationConfirm.tsx │ │ │ │ │ │ └── shared.tsx │ │ │ │ └── resources │ │ │ │ │ ├── about │ │ │ │ │ ├── AboutPage.scss │ │ │ │ │ ├── AboutPage.spec.tsx │ │ │ │ │ ├── AboutPage.stories.tsx │ │ │ │ │ ├── AboutPage.tsx │ │ │ │ │ ├── partials │ │ │ │ │ │ ├── AboutFooter.tsx │ │ │ │ │ │ ├── ChangeLogModal.tsx │ │ │ │ │ │ ├── LicenseDetails.spec.tsx │ │ │ │ │ │ ├── LicenseDetails.tsx │ │ │ │ │ │ ├── LicenseSummary.tsx │ │ │ │ │ │ ├── PassiveState.tsx │ │ │ │ │ │ ├── RequestSupportModal.tsx │ │ │ │ │ │ ├── SupportDetails.tsx │ │ │ │ │ │ ├── SupportSummary.tsx │ │ │ │ │ │ ├── VersionsSummary.tsx │ │ │ │ │ │ └── common.tsx │ │ │ │ │ └── useAboutPage.tsx │ │ │ │ │ ├── databases │ │ │ │ │ ├── DatabasesPage.spec.tsx │ │ │ │ │ ├── DatabasesPage.stories.tsx │ │ │ │ │ ├── DatabasesPage.tsx │ │ │ │ │ ├── partials │ │ │ │ │ │ ├── AccessIcon.tsx │ │ │ │ │ │ ├── BulkDatabaseResetConfirm.tsx │ │ │ │ │ │ ├── DatabaseDistribution.tsx │ │ │ │ │ │ ├── DatabaseLoadError.tsx │ │ │ │ │ │ ├── DatabaseNodeSetItem.tsx │ │ │ │ │ │ ├── DatabasePanel.tsx │ │ │ │ │ │ ├── DatabaseTopology.tsx │ │ │ │ │ │ ├── DatabaseTopologyNodeSetItem.tsx │ │ │ │ │ │ ├── DatabasesFilter.tsx │ │ │ │ │ │ ├── DatabasesSelectActions.tsx │ │ │ │ │ │ ├── NoDatabases.tsx │ │ │ │ │ │ ├── SizeOnDisk.tsx │ │ │ │ │ │ ├── ValidDatabasePropertiesPanel.scss │ │ │ │ │ │ ├── ValidDatabasePropertiesPanel.spec.tsx │ │ │ │ │ │ ├── ValidDatabasePropertiesPanel.tsx │ │ │ │ │ │ ├── ValidDatabasePropertiesPanelAlertsPopover.tsx │ │ │ │ │ │ ├── ValidDatabasePropertiesPanelPerfHintsPopover.tsx │ │ │ │ │ │ └── create │ │ │ │ │ │ │ ├── CreateDatabase.scss │ │ │ │ │ │ │ ├── CreateDatabase.spec.tsx │ │ │ │ │ │ │ ├── CreateDatabase.stories.tsx │ │ │ │ │ │ │ ├── CreateDatabase.tsx │ │ │ │ │ │ │ ├── formBackup │ │ │ │ │ │ │ ├── CreateDatabaseFromBackup.tsx │ │ │ │ │ │ │ ├── createDatabaseFromBackupDataUtils.ts │ │ │ │ │ │ │ ├── createDatabaseFromBackupValidation.ts │ │ │ │ │ │ │ └── steps │ │ │ │ │ │ │ │ ├── CreateDatabaseFromBackupStepBasicInfo.tsx │ │ │ │ │ │ │ │ └── source │ │ │ │ │ │ │ │ ├── BackupSourceAmazonS3.tsx │ │ │ │ │ │ │ │ ├── BackupSourceAzure.tsx │ │ │ │ │ │ │ │ ├── BackupSourceGoogleCloud.tsx │ │ │ │ │ │ │ │ ├── BackupSourceLocal.tsx │ │ │ │ │ │ │ │ ├── BackupSourceRavenCloud.tsx │ │ │ │ │ │ │ │ ├── CreateDatabaseFromBackupStepSource.tsx │ │ │ │ │ │ │ │ ├── EncryptionField.tsx │ │ │ │ │ │ │ │ ├── RestorePointField.tsx │ │ │ │ │ │ │ │ ├── RestorePointsFields.tsx │ │ │ │ │ │ │ │ └── useRestorePointUtils.ts │ │ │ │ │ │ │ ├── regular │ │ │ │ │ │ │ ├── CreateDatabaseRegular.tsx │ │ │ │ │ │ │ ├── QuickCreateButton.tsx │ │ │ │ │ │ │ ├── createDatabaseRegularDataUtils.ts │ │ │ │ │ │ │ ├── createDatabaseRegularValidation.ts │ │ │ │ │ │ │ └── steps │ │ │ │ │ │ │ │ ├── CreateDatabaseRegularStepBasicInfo.tsx │ │ │ │ │ │ │ │ ├── CreateDatabaseRegularStepNodeSelection.tsx │ │ │ │ │ │ │ │ ├── CreateDatabaseRegularStepReplicationAndSharding.tsx │ │ │ │ │ │ │ │ └── StepShardingPrefixes.tsx │ │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ ├── AuthenticationOffMessage.tsx │ │ │ │ │ │ │ ├── CreateDatabaseStepDataDirectory.tsx │ │ │ │ │ │ │ ├── EncryptionUnavailableMessage.tsx │ │ │ │ │ │ │ ├── createDatabaseSharedValidation.tsx │ │ │ │ │ │ │ ├── createDatabaseUtils.ts │ │ │ │ │ │ │ ├── useCreateDatabaseAsyncValidation.tsx │ │ │ │ │ │ │ └── useCreateDatabaseShortcuts.ts │ │ │ │ │ └── store │ │ │ │ │ │ ├── databasesViewActions.ts │ │ │ │ │ │ ├── databasesViewSelectors.ts │ │ │ │ │ │ └── databasesViewSlice.ts │ │ │ │ │ ├── manageDatabaseGroup │ │ │ │ │ ├── ManageDatabaseGroup.spec.tsx │ │ │ │ │ ├── ManageDatabaseGroupPage.stories.tsx │ │ │ │ │ ├── ManageDatabaseGroupPage.tsx │ │ │ │ │ └── partials │ │ │ │ │ │ ├── DeletionInProgress.tsx │ │ │ │ │ │ ├── NodeGroup.tsx │ │ │ │ │ │ ├── NodeInfoComponent.tsx │ │ │ │ │ │ ├── OrchestratorsGroup.tsx │ │ │ │ │ │ ├── ReorderNodes.tsx │ │ │ │ │ │ ├── ShardsGroup.tsx │ │ │ │ │ │ ├── useGroup.ts │ │ │ │ │ │ └── useSortableModeCounter.tsx │ │ │ │ │ └── manageServer │ │ │ │ │ ├── adminJsConsole │ │ │ │ │ ├── AdminJsConsole.scss │ │ │ │ │ ├── AdminJsConsole.spec.tsx │ │ │ │ │ ├── AdminJsConsole.stories.tsx │ │ │ │ │ ├── AdminJsConsole.tsx │ │ │ │ │ └── AdminJsConsoleValidation.ts │ │ │ │ │ ├── clientConfiguration │ │ │ │ │ ├── ClientGlobalConfiguration.spec.tsx │ │ │ │ │ ├── ClientGlobalConfiguration.stories.tsx │ │ │ │ │ └── ClientGlobalConfiguration.tsx │ │ │ │ │ ├── gatherDebugInfo │ │ │ │ │ ├── GatherDebugInfo.scss │ │ │ │ │ ├── GatherDebugInfo.spec.tsx │ │ │ │ │ ├── GatherDebugInfo.stories.tsx │ │ │ │ │ ├── GatherDebugInfo.tsx │ │ │ │ │ ├── GatherDebugInfoAbortConfirm.tsx │ │ │ │ │ ├── GatherDebugInfoIcons.tsx │ │ │ │ │ ├── GatherDebugInfoValidation.ts │ │ │ │ │ └── useGatherDebugInfoHelpers.ts │ │ │ │ │ ├── serverWideAnalyzers │ │ │ │ │ ├── ServerWideCustomAnalyzers.spec.tsx │ │ │ │ │ ├── ServerWideCustomAnalyzers.stories.tsx │ │ │ │ │ ├── ServerWideCustomAnalyzers.tsx │ │ │ │ │ ├── ServerWideCustomAnalyzersInfoHub.tsx │ │ │ │ │ ├── ServerWideCustomAnalyzersList.tsx │ │ │ │ │ └── ServerWideCustomAnalyzersListItem.tsx │ │ │ │ │ ├── serverWideSorters │ │ │ │ │ ├── ServerWideCustomSorters.spec.tsx │ │ │ │ │ ├── ServerWideCustomSorters.stories.tsx │ │ │ │ │ ├── ServerWideCustomSorters.tsx │ │ │ │ │ ├── ServerWideCustomSortersInfoHub.tsx │ │ │ │ │ ├── ServerWideCustomSortersList.tsx │ │ │ │ │ └── ServerWideCustomSortersListItem.tsx │ │ │ │ │ └── studioConfiguration │ │ │ │ │ ├── StudioGlobalConfiguration.spec.tsx │ │ │ │ │ ├── StudioGlobalConfiguration.stories.tsx │ │ │ │ │ ├── StudioGlobalConfiguration.tsx │ │ │ │ │ └── StudioGlobalConfigurationValidation.ts │ │ │ ├── services │ │ │ │ ├── DatabasesService.ts │ │ │ │ ├── IndexesService.ts │ │ │ │ ├── LicenseService.ts │ │ │ │ ├── ManageServerService.ts │ │ │ │ ├── ResourcesService.ts │ │ │ │ └── TasksService.ts │ │ │ ├── shell │ │ │ │ └── studioSearchWithDatabaseSelector │ │ │ │ │ ├── StudioSearchWithDatabaseSwitcher.spec.tsx │ │ │ │ │ ├── StudioSearchWithDatabaseSwitcher.stories.tsx │ │ │ │ │ ├── StudioSearchWithDatabaseSwitcher.tsx │ │ │ │ │ ├── databaseSwitcher │ │ │ │ │ ├── DatabaseSwitcher.scss │ │ │ │ │ ├── DatabaseSwitcher.tsx │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── DatabaseEnvironmentBadge.tsx │ │ │ │ │ │ ├── DatabaseIcon.tsx │ │ │ │ │ │ ├── DatabaseOptionItem.tsx │ │ │ │ │ │ ├── DatabaseSingleValue.tsx │ │ │ │ │ │ ├── DisabledBadge.tsx │ │ │ │ │ │ └── NoDatabasePlaceholder.tsx │ │ │ │ │ └── databaseSwitcherTypes.ts │ │ │ │ │ └── studioSearch │ │ │ │ │ ├── StudioSearch.scss │ │ │ │ │ ├── StudioSearch.tsx │ │ │ │ │ ├── bits │ │ │ │ │ ├── StudioSearchDatabaseGroupHeader.tsx │ │ │ │ │ ├── StudioSearchDatabaseResults.tsx │ │ │ │ │ ├── StudioSearchFuzzyHighlightedText.tsx │ │ │ │ │ ├── StudioSearchLegend.tsx │ │ │ │ │ ├── StudioSearchResultItem.tsx │ │ │ │ │ ├── StudioSearchServerResults.tsx │ │ │ │ │ └── StudioSearchSwitchToDatabaseResults.tsx │ │ │ │ │ ├── hooks │ │ │ │ │ ├── useStudioSearch.ts │ │ │ │ │ ├── useStudioSearchAsyncRegister.ts │ │ │ │ │ ├── useStudioSearchKeyboardEvents.ts │ │ │ │ │ ├── useStudioSearchMouseEvents.ts │ │ │ │ │ ├── useStudioSearchOmniSearch.ts │ │ │ │ │ ├── useStudioSearchSyncRegister.ts │ │ │ │ │ └── useStudioSearchUtils.ts │ │ │ │ │ └── studioSearchTypes.ts │ │ │ ├── store.ts │ │ │ ├── storeCompat.ts │ │ │ ├── storeUtils.ts │ │ │ └── utils │ │ │ │ ├── DatabaseUtils.spec.ts │ │ │ │ ├── DatabaseUtils.ts │ │ │ │ ├── IndexUtils.ts │ │ │ │ ├── TaskUtils.ts │ │ │ │ ├── actionContextUtils.ts │ │ │ │ ├── assertUnreachable.ts │ │ │ │ ├── common.ts │ │ │ │ ├── licenseLimitsUtils.tsx │ │ │ │ └── yupUtils.ts │ │ ├── durandalPlugins │ │ │ └── bootstrapModal.ts │ │ ├── external │ │ │ └── dirtyFlag.js │ │ ├── main.ts │ │ ├── models │ │ │ ├── auth │ │ │ │ ├── certificateModel.ts │ │ │ │ ├── certificatePermissionModel.ts │ │ │ │ ├── clientCertificateModel.ts │ │ │ │ └── licenseModel.ts │ │ │ ├── database │ │ │ │ ├── cluster │ │ │ │ │ ├── addClusterNodeModel.ts │ │ │ │ │ ├── clusterGraph.ts │ │ │ │ │ ├── clusterNode.ts │ │ │ │ │ └── clusterTopology.ts │ │ │ │ ├── dbGroup │ │ │ │ │ └── databaseGroupGraph.ts │ │ │ │ ├── debug │ │ │ │ │ ├── adminLogsConfig.ts │ │ │ │ │ ├── adminLogsConfigEntry.ts │ │ │ │ │ └── adminLogsOnDiskConfig.ts │ │ │ │ ├── documents │ │ │ │ │ ├── collection.ts │ │ │ │ │ ├── collectionInfo.ts │ │ │ │ │ ├── collectionsStats.ts │ │ │ │ │ ├── document.ts │ │ │ │ │ ├── documentMetadata.ts │ │ │ │ │ ├── documentPreviewer.ts │ │ │ │ │ ├── rawTimeSeriesPolicy.ts │ │ │ │ │ ├── recentDocuments.ts │ │ │ │ │ ├── timeSeriesConfigurationEntry.ts │ │ │ │ │ ├── timeSeriesNamedValues.ts │ │ │ │ │ ├── timeSeriesPolicy.ts │ │ │ │ │ └── timeValueEntry.ts │ │ │ │ ├── index │ │ │ │ │ ├── additionalAssemblyModel.ts │ │ │ │ │ ├── additionalSource.ts │ │ │ │ │ ├── autoIndexDefinition.ts │ │ │ │ │ ├── compoundField.ts │ │ │ │ │ ├── configurationItem.ts │ │ │ │ │ ├── indexAceAutoCompleteProvider.ts │ │ │ │ │ ├── indexDefinition.ts │ │ │ │ │ ├── indexErrorInfoModel.ts │ │ │ │ │ ├── indexFieldOptions.ts │ │ │ │ │ ├── spatialOptions.ts │ │ │ │ │ └── testIndex.ts │ │ │ │ ├── patch │ │ │ │ │ └── patchDocument.ts │ │ │ │ ├── query │ │ │ │ │ ├── abstractQueryResult.ts │ │ │ │ │ ├── queryCriteria.ts │ │ │ │ │ ├── querySort.ts │ │ │ │ │ ├── spatialCircleModel.ts │ │ │ │ │ ├── spatialMarkersLayerModel.ts │ │ │ │ │ └── spatialPolygonModel.ts │ │ │ │ ├── settings │ │ │ │ │ ├── connectionStringAzureQueueStorageModel.ts │ │ │ │ │ ├── connectionStringElasticSearchEtlModel.ts │ │ │ │ │ ├── connectionStringKafkaModel.ts │ │ │ │ │ ├── connectionStringModel.ts │ │ │ │ │ ├── connectionStringOlapEtlModel.ts │ │ │ │ │ ├── connectionStringRabbitMqModel.ts │ │ │ │ │ ├── connectionStringRavenEtlModel.ts │ │ │ │ │ ├── connectionStringSqlEtlModel.ts │ │ │ │ │ ├── customAnalyzer.ts │ │ │ │ │ ├── customSorter.ts │ │ │ │ │ ├── databaseSettingsModels.ts │ │ │ │ │ ├── discoveryUrl.ts │ │ │ │ │ └── sorterListItemModel.ts │ │ │ │ ├── stats │ │ │ │ │ ├── etlScriptDefinitionCache.ts │ │ │ │ │ ├── sinkScriptDefinitionCache.ts │ │ │ │ │ └── subscriptionQueryDefinitionCache.ts │ │ │ │ ├── status │ │ │ │ │ ├── bucketReportItem.ts │ │ │ │ │ ├── ioStatsGraph.ts │ │ │ │ │ └── storageReportItem.ts │ │ │ │ ├── tasks │ │ │ │ │ ├── exportDatabaseModel.ts │ │ │ │ │ ├── importDatabaseModel.ts │ │ │ │ │ ├── migrateDatabaseModel.ts │ │ │ │ │ ├── migrateRavenDbDatabaseModel.ts │ │ │ │ │ ├── ongoingTaskAzureQueueStorageEtlEditModel.ts │ │ │ │ │ ├── ongoingTaskEditModel.ts │ │ │ │ │ ├── ongoingTaskElasticSearchEtlEditModel.ts │ │ │ │ │ ├── ongoingTaskElasticSearchEtlIndexModel.ts │ │ │ │ │ ├── ongoingTaskElasticSearchEtlTransformationModel.ts │ │ │ │ │ ├── ongoingTaskKafkaEtlEditModel.ts │ │ │ │ │ ├── ongoingTaskKafkaSinkEditModel.ts │ │ │ │ │ ├── ongoingTaskListModel.ts │ │ │ │ │ ├── ongoingTaskModel.ts │ │ │ │ │ ├── ongoingTaskOlapEtlEditModel.ts │ │ │ │ │ ├── ongoingTaskOlapEtlTableModel.ts │ │ │ │ │ ├── ongoingTaskOlapEtlTransformationModel.ts │ │ │ │ │ ├── ongoingTaskQueueEtlEditModel.ts │ │ │ │ │ ├── ongoingTaskQueueEtlTransformationModel.ts │ │ │ │ │ ├── ongoingTaskQueueSinkEditModel.ts │ │ │ │ │ ├── ongoingTaskQueueSinkScriptModel.ts │ │ │ │ │ ├── ongoingTaskRabbitMqEtlEditModel.ts │ │ │ │ │ ├── ongoingTaskRabbitMqSinkEditModel.ts │ │ │ │ │ ├── ongoingTaskRavenEtlEditModel.ts │ │ │ │ │ ├── ongoingTaskRavenEtlTransformationModel.ts │ │ │ │ │ ├── ongoingTaskReplicationEditModel.ts │ │ │ │ │ ├── ongoingTaskReplicationHubEditModel.ts │ │ │ │ │ ├── ongoingTaskReplicationSinkEditModel.ts │ │ │ │ │ ├── ongoingTaskSqlEtlEditModel.ts │ │ │ │ │ ├── ongoingTaskSqlEtlTableModel.ts │ │ │ │ │ ├── ongoingTaskSqlEtlTransformationModel.ts │ │ │ │ │ ├── ongoingTaskSubscriptionEditModel.ts │ │ │ │ │ ├── periodicBackup │ │ │ │ │ │ ├── amazonSettings.ts │ │ │ │ │ │ ├── backupConfiguration.ts │ │ │ │ │ │ ├── backupSettings.ts │ │ │ │ │ │ ├── encryptionSettings.ts │ │ │ │ │ │ ├── localSettings.ts │ │ │ │ │ │ ├── manualBackupConfiguration.ts │ │ │ │ │ │ ├── periodicBackupConfiguration.ts │ │ │ │ │ │ ├── retentionPolicy.ts │ │ │ │ │ │ └── snapshot.ts │ │ │ │ │ ├── prefixPathModel.ts │ │ │ │ │ ├── replicationAccessBaseModel.ts │ │ │ │ │ ├── replicationAccessHubModel.ts │ │ │ │ │ ├── replicationAccessSinkModel.ts │ │ │ │ │ ├── replicationCertificateModel.ts │ │ │ │ │ ├── serverWide │ │ │ │ │ │ ├── serverWideBackupEditModel.ts │ │ │ │ │ │ ├── serverWideBackupListModel.ts │ │ │ │ │ │ ├── serverWideConfigurationModel.ts │ │ │ │ │ │ ├── serverWideExcludeModel.ts │ │ │ │ │ │ ├── serverWideExternalReplicationEditModel.ts │ │ │ │ │ │ ├── serverWideExternalReplicationListModel.ts │ │ │ │ │ │ └── serverWideTaskListModel.ts │ │ │ │ │ ├── smugglerDatabaseRecord.ts │ │ │ │ │ ├── sql │ │ │ │ │ │ ├── abstractSqlTable.ts │ │ │ │ │ │ ├── innerSqlTable.ts │ │ │ │ │ │ ├── rootSqlTable.ts │ │ │ │ │ │ ├── sqlColumn.ts │ │ │ │ │ │ ├── sqlMigration.ts │ │ │ │ │ │ └── sqlReference.ts │ │ │ │ │ └── tasksCommonContent.ts │ │ │ │ └── timeSeries │ │ │ │ │ ├── timeSeriesEntryModel.ts │ │ │ │ │ ├── timeSeriesQueryResult.ts │ │ │ │ │ └── timeSeriesValue.ts │ │ │ ├── resources │ │ │ │ ├── buildInfo.ts │ │ │ │ ├── clusterDashboard │ │ │ │ │ ├── bubbleChart.ts │ │ │ │ │ ├── clusterDashboardChart.ts │ │ │ │ │ ├── generationsLineChart.ts │ │ │ │ │ └── lineChart.ts │ │ │ │ ├── connectionStatus.ts │ │ │ │ ├── database.ts │ │ │ │ ├── nonShardedDatabase.ts │ │ │ │ ├── shard.ts │ │ │ │ ├── shardedDatabase.ts │ │ │ │ ├── trafficWatchConfiguration.ts │ │ │ │ └── widgets │ │ │ │ │ ├── cpuUsage.ts │ │ │ │ │ ├── databaseDiskUsage.ts │ │ │ │ │ ├── databaseOverviewItem.ts │ │ │ │ │ ├── gcInfo.ts │ │ │ │ │ ├── historyAwareNodeStats.ts │ │ │ │ │ ├── indexingSpeed.ts │ │ │ │ │ ├── indexingSpeedItem.ts │ │ │ │ │ ├── ioStats.ts │ │ │ │ │ ├── memoryUsage.ts │ │ │ │ │ ├── mountPointUsage.ts │ │ │ │ │ ├── perNodeStatItems.ts │ │ │ │ │ ├── serverTraffic.ts │ │ │ │ │ ├── taskItem.ts │ │ │ │ │ └── trafficWatchItem.ts │ │ │ └── wizard │ │ │ │ ├── certificateInfo.ts │ │ │ │ ├── continueSetup.ts │ │ │ │ ├── domainInfo.ts │ │ │ │ ├── ipEntry.ts │ │ │ │ ├── licenseInfo.ts │ │ │ │ ├── nodeInfo.ts │ │ │ │ └── serverSetup.ts │ │ ├── overrides │ │ │ ├── composition.ts │ │ │ ├── system.ts │ │ │ └── views.ts │ │ ├── test │ │ │ ├── __mocks__ │ │ │ │ ├── fileMock.js │ │ │ │ └── styleMock.js │ │ │ ├── byClassNameQueries.ts │ │ │ ├── byNameQueries.ts │ │ │ ├── fixtures │ │ │ │ ├── indexes_progress.json │ │ │ │ ├── indexes_stats.json │ │ │ │ └── query_result.json │ │ │ ├── htmlLoader.js │ │ │ ├── mocks.ts │ │ │ ├── mocks │ │ │ │ ├── hooks │ │ │ │ │ ├── MockChangesHook.ts │ │ │ │ │ ├── MockDirtyFlagHook.ts │ │ │ │ │ ├── MockEventsCollector.ts │ │ │ │ │ └── MockHooks.ts │ │ │ │ ├── services │ │ │ │ │ ├── AutoMockService.ts │ │ │ │ │ ├── MockDatabasesService.ts │ │ │ │ │ ├── MockIndexesService.ts │ │ │ │ │ ├── MockLicenseService.ts │ │ │ │ │ ├── MockManageServerService.ts │ │ │ │ │ ├── MockResourcesService.ts │ │ │ │ │ ├── MockServices.ts │ │ │ │ │ └── MockTasksService.ts │ │ │ │ ├── store │ │ │ │ │ ├── MockAccessManager.ts │ │ │ │ │ ├── MockClusterManager.ts │ │ │ │ │ ├── MockCollectionsTracker.ts │ │ │ │ │ ├── MockDatabaseManager.ts │ │ │ │ │ ├── MockLicenseManager.ts │ │ │ │ │ └── MockStore.ts │ │ │ │ └── utils.ts │ │ │ ├── rtlTestUtils.tsx │ │ │ ├── storybookTestUtils.tsx │ │ │ └── stubs │ │ │ │ ├── ClusterStubs.ts │ │ │ │ ├── DatabasesStubs.ts │ │ │ │ ├── IndexesStubs.ts │ │ │ │ ├── LicenseStubs.ts │ │ │ │ ├── ManageServerStubs.ts │ │ │ │ ├── ResourcesStubs.ts │ │ │ │ ├── SharedStubs.ts │ │ │ │ └── TasksStubs.ts │ │ ├── transitions │ │ │ ├── entrance.ts │ │ │ ├── fadeIn.ts │ │ │ ├── fadeInVerticalDown.ts │ │ │ └── transitionHelper.ts │ │ ├── viewmodels │ │ │ ├── common │ │ │ │ ├── confirmationDialog.ts │ │ │ │ ├── cronEditor.ts │ │ │ │ ├── deleteDocuments.ts │ │ │ │ ├── detectBrowser.ts │ │ │ │ ├── latestBuildReminder.ts │ │ │ │ ├── notificationCenter │ │ │ │ │ ├── customControlls │ │ │ │ │ │ └── licenseAgpl.ts │ │ │ │ │ └── detailViewer │ │ │ │ │ │ ├── alerts │ │ │ │ │ │ ├── abstractAlertDetails.ts │ │ │ │ │ │ ├── blockingTombstonesDetails.ts │ │ │ │ │ │ ├── complexFieldsAlertDetails.ts │ │ │ │ │ │ ├── conflictExceededDetails.ts │ │ │ │ │ │ ├── cpuCreditsBalanceDetails.ts │ │ │ │ │ │ ├── etlTransformOrLoadErrorDetails.ts │ │ │ │ │ │ ├── genericAlertDetails.ts │ │ │ │ │ │ ├── mismatchedReferenceLoadDetails.ts │ │ │ │ │ │ ├── newVersionAvailableDetails.ts │ │ │ │ │ │ ├── queueSinkErrorDetails.ts │ │ │ │ │ │ └── serverLimitsDetails.ts │ │ │ │ │ │ ├── licenseLimitDetails.ts │ │ │ │ │ │ ├── operations │ │ │ │ │ │ ├── abstractOperationDetails.ts │ │ │ │ │ │ ├── bulkInsertDetails.ts │ │ │ │ │ │ ├── compactDatabaseDetails.ts │ │ │ │ │ │ ├── deleteDocumentsDetails.ts │ │ │ │ │ │ ├── dumpRawIndexDataDetails.ts │ │ │ │ │ │ ├── enforceRevisionsConfigurationDetails.ts │ │ │ │ │ │ ├── generateClientCertificateDetails.ts │ │ │ │ │ │ ├── optimizeIndexDetails.ts │ │ │ │ │ │ ├── patchDocumentsDetails.ts │ │ │ │ │ │ ├── replayTransactionCommandsDetails.ts │ │ │ │ │ │ ├── reshardingDetails.ts │ │ │ │ │ │ ├── revertRevisionsDetails.ts │ │ │ │ │ │ ├── smugglerDatabaseDetails.ts │ │ │ │ │ │ ├── sqlMigrationDetails.ts │ │ │ │ │ │ └── transactionCommandsDetails.ts │ │ │ │ │ │ ├── performanceHint │ │ │ │ │ │ ├── abstractPerformanceHintDetails.ts │ │ │ │ │ │ ├── hugeDocumentsDetails.ts │ │ │ │ │ │ ├── indexingDetails.ts │ │ │ │ │ │ ├── indexingReferencesDetails.ts │ │ │ │ │ │ ├── pagingDetails.ts │ │ │ │ │ │ ├── requestLatencyDetails.ts │ │ │ │ │ │ ├── slowIoDetails.ts │ │ │ │ │ │ └── slowSqlDetails.ts │ │ │ │ │ │ ├── recentErrorDetails.ts │ │ │ │ │ │ └── virtualOperations │ │ │ │ │ │ ├── virtualBulkInsertDetails.ts │ │ │ │ │ │ ├── virtualBulkInsertFailuresDetails.ts │ │ │ │ │ │ ├── virtualDeleteByQueryDetails.ts │ │ │ │ │ │ ├── virtualDeleteByQueryFailuresDetails.ts │ │ │ │ │ │ ├── virtualUpdateByQueryDetails.ts │ │ │ │ │ │ └── virtualUpdateByQueryFailuresDetails.ts │ │ │ │ ├── sharding │ │ │ │ │ ├── inlineShardSelector.ts │ │ │ │ │ ├── shardAwareContainer.ts │ │ │ │ │ ├── shardSelector.ts │ │ │ │ │ └── shardingContext.ts │ │ │ │ ├── showDataDialog.ts │ │ │ │ ├── timeAwareEWMA.spec.ts │ │ │ │ ├── timeAwareEWMA.ts │ │ │ │ ├── timeSeriesPlotDetails.ts │ │ │ │ └── validationHelpers.ts │ │ │ ├── confirmViewModelBase.ts │ │ │ ├── database │ │ │ │ ├── cmpXchg │ │ │ │ │ ├── cmpXchg.ts │ │ │ │ │ └── editCmpXchg.ts │ │ │ │ ├── conflicts │ │ │ │ │ └── conflicts.ts │ │ │ │ ├── documents │ │ │ │ │ ├── deleteCollection.ts │ │ │ │ │ ├── deleteCompareExchangeConfirm.ts │ │ │ │ │ ├── deleteCompareExchangeProgress.ts │ │ │ │ │ ├── documents.ts │ │ │ │ │ ├── editDocument.ts │ │ │ │ │ ├── editDocumentConnectedDocuments.ts │ │ │ │ │ ├── editDocumentUploader.ts │ │ │ │ │ ├── editorWarningsConfirm.ts │ │ │ │ │ ├── revisionsBin.ts │ │ │ │ │ └── setCounterDialog.ts │ │ │ │ ├── identities │ │ │ │ │ └── identities.ts │ │ │ │ ├── indexes │ │ │ │ │ ├── EditIndexInfoHub.tsx │ │ │ │ │ ├── additionalAssemblySyntax.ts │ │ │ │ │ ├── additionalSourceSyntax.ts │ │ │ │ │ ├── clearIndexErrorsConfirm.ts │ │ │ │ │ ├── convertToStaticDialog.ts │ │ │ │ │ ├── deleteIndexesConfirm.ts │ │ │ │ │ ├── dumpDialog.ts │ │ │ │ │ ├── editIndex.ts │ │ │ │ │ ├── forceParallelDeploymentConfirm.ts │ │ │ │ │ ├── indexErrorDetails.ts │ │ │ │ │ ├── indexErrors.ts │ │ │ │ │ ├── indexPerformance.ts │ │ │ │ │ ├── indexStalenessReasons.ts │ │ │ │ │ ├── indexTerms.ts │ │ │ │ │ ├── indexesOLD.ts │ │ │ │ │ ├── mapIndexSyntax.ts │ │ │ │ │ ├── mapReduceIndexSyntax.ts │ │ │ │ │ ├── optimizeDialog.ts │ │ │ │ │ └── visualizer │ │ │ │ │ │ ├── visualizer.ts │ │ │ │ │ │ ├── visualizerGraphDetails.ts │ │ │ │ │ │ ├── visualizerGraphGlobal.ts │ │ │ │ │ │ └── visualizerTreeExplorer.ts │ │ │ │ ├── patch │ │ │ │ │ ├── docsIdsBasedOnQueryFetcher.ts │ │ │ │ │ ├── patch.ts │ │ │ │ │ ├── patchDebugActions.ts │ │ │ │ │ ├── patchSyntax.ts │ │ │ │ │ └── patchTester.ts │ │ │ │ ├── query │ │ │ │ │ ├── deleteDocumentsMatchingQueryConfirm.ts │ │ │ │ │ ├── explainQueryDialog.ts │ │ │ │ │ ├── query.ts │ │ │ │ │ ├── queryPlan.ts │ │ │ │ │ ├── queryStatsDialog.ts │ │ │ │ │ ├── querySyntax.ts │ │ │ │ │ └── spatialQueryMap.ts │ │ │ │ ├── settings │ │ │ │ │ ├── DocumentCompressionInfoHub.tsx │ │ │ │ │ ├── TimeSeriesInfoHub.tsx │ │ │ │ │ ├── conflictResolutionScriptSyntax.ts │ │ │ │ │ ├── databaseSettings.ts │ │ │ │ │ ├── editCustomSorter.ts │ │ │ │ │ ├── saveDatabaseSettingsConfirm.ts │ │ │ │ │ └── timeSeries.ts │ │ │ │ ├── status │ │ │ │ │ ├── bucketsReport.ts │ │ │ │ │ ├── etlScriptDefinitionPreview.ts │ │ │ │ │ ├── ioStats.ts │ │ │ │ │ ├── ongoingTasksStats.ts │ │ │ │ │ ├── sinkScriptDefinitionPreview.ts │ │ │ │ │ ├── storageReport.ts │ │ │ │ │ └── subscriptionQueryDefinitionPreview.ts │ │ │ │ ├── tasks │ │ │ │ │ ├── EditAzureQueueStorageEtlInfoHub.tsx │ │ │ │ │ ├── EditElasticSearchEtlInfoHub.tsx │ │ │ │ │ ├── EditExternalReplicationInfoHub.tsx │ │ │ │ │ ├── EditKafkaEtlInfoHub.tsx │ │ │ │ │ ├── EditKafkaSinkTaskInfoHub.tsx │ │ │ │ │ ├── EditManualBackupTaskInfoHub.tsx │ │ │ │ │ ├── EditOlapEtlInfoHub.tsx │ │ │ │ │ ├── EditPeriodicBackupTaskInfoHub.tsx │ │ │ │ │ ├── EditRabbitMqEtlInfoHub.tsx │ │ │ │ │ ├── EditRabbitMqSinkTaskInfoHub.tsx │ │ │ │ │ ├── EditRavenEtlInfoHub.tsx │ │ │ │ │ ├── EditReplicationHubInfoHub.tsx │ │ │ │ │ ├── EditReplicationSinkInfoHub.tsx │ │ │ │ │ ├── EditSqlEtlInfoHub.tsx │ │ │ │ │ ├── EditSubscriptionTaskInfoHub.tsx │ │ │ │ │ ├── backupNow.ts │ │ │ │ │ ├── destinations │ │ │ │ │ │ ├── azureSettings.ts │ │ │ │ │ │ ├── ftpSettings.ts │ │ │ │ │ │ ├── glacierSettings.ts │ │ │ │ │ │ ├── googleCloudSettings.ts │ │ │ │ │ │ └── s3Settings.ts │ │ │ │ │ ├── editAzureQueueStorageEtlTask.ts │ │ │ │ │ ├── editElasticSearchEtlTask.ts │ │ │ │ │ ├── editExternalReplicationTask.ts │ │ │ │ │ ├── editKafkaEtlTask.ts │ │ │ │ │ ├── editKafkaSinkTask.ts │ │ │ │ │ ├── editOlapEtlTask.ts │ │ │ │ │ ├── editPeriodicBackupTask.ts │ │ │ │ │ ├── editRabbitMqEtlTask.ts │ │ │ │ │ ├── editRabbitMqSinkTask.ts │ │ │ │ │ ├── editRavenEtlTask.ts │ │ │ │ │ ├── editReplicationHubTask.ts │ │ │ │ │ ├── editReplicationSinkTask.ts │ │ │ │ │ ├── editSqlEtlTask.ts │ │ │ │ │ ├── editSubscriptionTask.ts │ │ │ │ │ ├── exportDatabase.ts │ │ │ │ │ ├── generateReplicationCertificateConfirm.ts │ │ │ │ │ ├── importCollectionFromCsv.ts │ │ │ │ │ ├── importDatabaseFromFile.ts │ │ │ │ │ ├── importDatabaseFromSql.ts │ │ │ │ │ ├── importParent.ts │ │ │ │ │ ├── migrateDatabase.ts │ │ │ │ │ ├── migrateRavenDbDatabase.ts │ │ │ │ │ ├── queueSinkSyntax.ts │ │ │ │ │ ├── referenceUsageDialog.ts │ │ │ │ │ ├── subscriptionRqlSyntax.ts │ │ │ │ │ └── transformationScriptSyntax.ts │ │ │ │ └── timeSeries │ │ │ │ │ ├── deleteTimeSeries.ts │ │ │ │ │ ├── editTimeSeries.ts │ │ │ │ │ ├── editTimeSeriesEntry.ts │ │ │ │ │ └── filterTimeSeries.ts │ │ │ ├── dialogViewModelBase.ts │ │ │ ├── eula │ │ │ │ └── license.ts │ │ │ ├── eulaShell.ts │ │ │ ├── manage │ │ │ │ ├── CertificatesInfoHub.tsx │ │ │ │ ├── EditServerWideBackupInfoHub.tsx │ │ │ │ ├── EditServerWideExternalReplicationInfoHub.tsx │ │ │ │ ├── addClusterNode.ts │ │ │ │ ├── adminLogs.ts │ │ │ │ ├── adminLogsTrafficWatchDialog.ts │ │ │ │ ├── assignCores.ts │ │ │ │ ├── captureStackTraces.ts │ │ │ │ ├── certificates.ts │ │ │ │ ├── cluster.ts │ │ │ │ ├── configureEventListenerDialog.ts │ │ │ │ ├── configureMicrosoftLogsDialog.ts │ │ │ │ ├── createServerWideTask.ts │ │ │ │ ├── debugAdvancedClusterDebug.ts │ │ │ │ ├── debugAdvancedClusterSnapshotInstallation.ts │ │ │ │ ├── debugAdvancedMemoryMappedFiles.ts │ │ │ │ ├── debugAdvancedObserverLog.ts │ │ │ │ ├── debugAdvancedParent.ts │ │ │ │ ├── debugAdvancedRecordTransactionCommands.ts │ │ │ │ ├── debugAdvancedReplayTransactionCommands.ts │ │ │ │ ├── debugAdvancedThreadsRuntime.ts │ │ │ │ ├── editServerWideBackup.ts │ │ │ │ ├── editServerWideCustomSorter.ts │ │ │ │ ├── editServerWideExternalReplication.ts │ │ │ │ ├── queryTimingsDialog.ts │ │ │ │ ├── runningQueries.ts │ │ │ │ ├── serverSettings.ts │ │ │ │ ├── serverWideIoStats.ts │ │ │ │ ├── serverWideTasks.ts │ │ │ │ ├── storageReport.ts │ │ │ │ ├── threadStackTrace.ts │ │ │ │ ├── trafficWatch.ts │ │ │ │ └── trafficWatchQueriesDialog.ts │ │ │ ├── partial │ │ │ │ └── columnsSelector.ts │ │ │ ├── reactViewModelBase.ts │ │ │ ├── resources │ │ │ │ ├── addNewNodeToDatabaseGroup.ts │ │ │ │ ├── addNewOrchestatorToDatabaseGroup.ts │ │ │ │ ├── addNewShardToDatabaseGroup.ts │ │ │ │ ├── addWidgetModal.ts │ │ │ │ ├── clusterDashboard.ts │ │ │ │ ├── compactDatabaseDialog.ts │ │ │ │ ├── deleteDatabaseConfirm.ts │ │ │ │ ├── disableDatabaseToggleConfirm.ts │ │ │ │ ├── disableIndexingToggleConfirm.ts │ │ │ │ ├── setupEncryptionKey.ts │ │ │ │ └── widgets │ │ │ │ │ ├── abstractChartsWebsocketWidget.ts │ │ │ │ │ ├── abstractDatabaseAndNodeAwareTableWidget.ts │ │ │ │ │ ├── abstractTransformingChartsWebsocketWidget.ts │ │ │ │ │ ├── clusterOverviewWidget.ts │ │ │ │ │ ├── cpuUsageWidget.ts │ │ │ │ │ ├── databaseIndexingWidget.ts │ │ │ │ │ ├── databaseOverviewWidget.ts │ │ │ │ │ ├── databaseStorageWidget.ts │ │ │ │ │ ├── databaseTrafficWidget.ts │ │ │ │ │ ├── gcInfoWidget.ts │ │ │ │ │ ├── indexingWidget.ts │ │ │ │ │ ├── ioStatsWidget.ts │ │ │ │ │ ├── licenseWidget.ts │ │ │ │ │ ├── memoryUsageWidget.ts │ │ │ │ │ ├── ongoingTasksWidget.ts │ │ │ │ │ ├── settings │ │ │ │ │ ├── ioStatsWidgetSettings.ts │ │ │ │ │ └── storageWidgetSettings.ts │ │ │ │ │ ├── storageWidget.ts │ │ │ │ │ ├── trafficWidget.ts │ │ │ │ │ ├── websocketBasedWidget.ts │ │ │ │ │ ├── welcomeWidget.ts │ │ │ │ │ └── widget.ts │ │ │ ├── shardViewModelBase.ts │ │ │ ├── shardedReactViewModelBase.ts │ │ │ ├── shell.ts │ │ │ ├── shell │ │ │ │ ├── UpgradeModal.tsx │ │ │ │ ├── chooseTheme.ts │ │ │ │ ├── feedback.ts │ │ │ │ └── registration.ts │ │ │ ├── twoFactorShell.ts │ │ │ ├── viewModelBase.ts │ │ │ └── wizard │ │ │ │ ├── certificate.ts │ │ │ │ ├── continueConfiguration.ts │ │ │ │ ├── domain.ts │ │ │ │ ├── finish.ts │ │ │ │ ├── license.ts │ │ │ │ ├── nodes.ts │ │ │ │ ├── secureInstructions.ts │ │ │ │ ├── security.ts │ │ │ │ ├── setupShell.ts │ │ │ │ ├── setupStep.ts │ │ │ │ ├── unsecured.ts │ │ │ │ └── welcome.ts │ │ └── widgets │ │ │ ├── listView │ │ │ ├── listView.ts │ │ │ ├── listViewController.ts │ │ │ └── virtualListRow.ts │ │ │ └── virtualGrid │ │ │ ├── columnPreviewPlugin.ts │ │ │ ├── columns │ │ │ ├── actionColumn.ts │ │ │ ├── checkedColumn.ts │ │ │ ├── customColumn.ts │ │ │ ├── flagsColumn.ts │ │ │ ├── hyperlinkColumn.ts │ │ │ ├── iconsPlusTextColumn.ts │ │ │ ├── inlineTimeSeriesColumn.ts │ │ │ ├── multiNodeTagsColumn.ts │ │ │ ├── nodeTagColumn.ts │ │ │ ├── providers │ │ │ │ └── documentBasedColumnsProvider.ts │ │ │ ├── sortableVirtualColumn.ts │ │ │ ├── textColumn.ts │ │ │ ├── timeSeriesColumn.ts │ │ │ └── virtualColumn.ts │ │ │ ├── itemFetch.ts │ │ │ ├── shiftSelectionPreview.ts │ │ │ ├── virtualGrid.ts │ │ │ ├── virtualGridConfig.ts │ │ │ ├── virtualGridController.ts │ │ │ ├── virtualGridSelection.ts │ │ │ ├── virtualGridUtils.ts │ │ │ └── virtualRow.ts │ ├── typings │ │ ├── _studio │ │ │ ├── computedAppUrls.d.ts │ │ │ ├── customTypings.d.ts │ │ │ ├── dto.d.ts │ │ │ ├── languageService.d.ts │ │ │ └── utils.d.ts │ │ ├── custom_jszip.d.ts │ │ ├── custom_node-forge.d.ts │ │ └── tsd.d.ts │ ├── webpack.config.js │ └── wwwroot │ │ ├── App │ │ └── views │ │ │ ├── common │ │ │ ├── confirmationDialog.html │ │ │ ├── cronEditor.html │ │ │ ├── deleteDocuments.html │ │ │ ├── detectBrowser.html │ │ │ ├── graphHelper.html │ │ │ ├── latestBuildReminder.html │ │ │ ├── notificationCenter │ │ │ │ ├── customControlls │ │ │ │ │ └── licenseAgpl.html │ │ │ │ └── detailViewer │ │ │ │ │ ├── alerts │ │ │ │ │ ├── blockingTombstonesDetails.html │ │ │ │ │ ├── complexFieldAlertDetails.html │ │ │ │ │ ├── conflictExceededDetails.html │ │ │ │ │ ├── cpuCreditsBalanceDetails.html │ │ │ │ │ ├── etlTransformOrLoadErrorDetails.html │ │ │ │ │ ├── footerPartial.html │ │ │ │ │ ├── genericAlertDetails.html │ │ │ │ │ ├── mismatchedReferenceLoadDetails.html │ │ │ │ │ ├── newVersionAvailableDetails.html │ │ │ │ │ ├── queueSinkErrorDetails.html │ │ │ │ │ └── serverLimitsDetails.html │ │ │ │ │ ├── licenseLimitDetails.html │ │ │ │ │ ├── operations │ │ │ │ │ ├── bulkInsertDetails.html │ │ │ │ │ ├── compactDatabaseDetails.html │ │ │ │ │ ├── deleteDocumentsDetails.html │ │ │ │ │ ├── dumpRawIndexDataDetails.html │ │ │ │ │ ├── enforceRevisionsConfigurationDetails.html │ │ │ │ │ ├── footerPartial.html │ │ │ │ │ ├── generateClientCertificateDetails.html │ │ │ │ │ ├── indexCompactDetails.html │ │ │ │ │ ├── optimizeIndexDetails.html │ │ │ │ │ ├── patchDocumentsDetails.html │ │ │ │ │ ├── replayTransactionCommandsDetails.html │ │ │ │ │ ├── reshardingDetails.html │ │ │ │ │ ├── revertRevisionsDetails.html │ │ │ │ │ ├── smugglerDatabaseDetails.html │ │ │ │ │ └── sqlMigrationDetails.html │ │ │ │ │ ├── performanceHint │ │ │ │ │ ├── footerPartial.html │ │ │ │ │ ├── hugeDocumentsDetails.html │ │ │ │ │ ├── indexingDetails.html │ │ │ │ │ ├── indexingReferencesDetails.html │ │ │ │ │ ├── pagingDetails.html │ │ │ │ │ ├── requestLatencyDetails.html │ │ │ │ │ ├── slowSqlDetails.html │ │ │ │ │ └── slowWriteDetails.html │ │ │ │ │ ├── recentErrorDetails.html │ │ │ │ │ └── virtualOperations │ │ │ │ │ ├── virtualBulkInsertDetails.html │ │ │ │ │ ├── virtualBulkInsertFailuresDetails.html │ │ │ │ │ ├── virtualDeleteByQueryDetails.html │ │ │ │ │ ├── virtualDeleteByQueryFailuresDetails.html │ │ │ │ │ ├── virtualUpdateByQueryDetails.html │ │ │ │ │ └── virtualUpdateByQueryFailuresDetails.html │ │ │ ├── sharding │ │ │ │ ├── inlineShardSelector.html │ │ │ │ ├── shardAwareContainer.html │ │ │ │ ├── shardSelector.html │ │ │ │ └── shardingContext.html │ │ │ ├── showDataDialog.html │ │ │ └── timeSeriesPlotDetails.html │ │ │ ├── database │ │ │ ├── cmpXchg │ │ │ │ ├── cmpXchg.html │ │ │ │ └── editCmpXchg.html │ │ │ ├── conflicts │ │ │ │ └── conflicts.html │ │ │ ├── documents │ │ │ │ ├── deleteCollection.html │ │ │ │ ├── deleteCompareExchangeConfirm.html │ │ │ │ ├── deleteCompareExchangeProgress.html │ │ │ │ ├── documents.html │ │ │ │ ├── editDocument.html │ │ │ │ ├── editorWarningsConfirm.html │ │ │ │ ├── revisionsBin.html │ │ │ │ └── setCounterDialog.html │ │ │ ├── identities │ │ │ │ └── identities.html │ │ │ ├── indexes │ │ │ │ ├── additionalAssemblySyntax.html │ │ │ │ ├── additionalSourceSyntax.html │ │ │ │ ├── additionalTabsCommonText.html │ │ │ │ ├── clearIndexErrorsConfirm.html │ │ │ │ ├── convertToStaticDialog.html │ │ │ │ ├── deleteIndexesConfirm.html │ │ │ │ ├── dumpDialog.html │ │ │ │ ├── editIndex.html │ │ │ │ ├── forceParallelDeploymentConfirm.html │ │ │ │ ├── indexErrorDetails.html │ │ │ │ ├── indexErrors.html │ │ │ │ ├── indexPerformance.html │ │ │ │ ├── indexStalenessReasons.html │ │ │ │ ├── indexTerms.html │ │ │ │ ├── mapIndexSyntax.html │ │ │ │ ├── mapReduceIndexSyntax.html │ │ │ │ ├── optimizeDialog.html │ │ │ │ └── visualizer │ │ │ │ │ ├── visualizer.html │ │ │ │ │ └── visualizerTreeExplorer.html │ │ │ ├── patch │ │ │ │ ├── patch.html │ │ │ │ ├── patchDebugActionsDeleted.html │ │ │ │ ├── patchDebugActionsLoaded.html │ │ │ │ ├── patchDebugActionsModified.html │ │ │ │ ├── patchSyntax.html │ │ │ │ └── scriptFunctionsSyntax.html │ │ │ ├── query │ │ │ │ ├── deleteDocumentsMatchingQueryConfirm.html │ │ │ │ ├── explainQueryDialog.html │ │ │ │ ├── query.html │ │ │ │ ├── queryStatsDialog.html │ │ │ │ ├── querySyntax.html │ │ │ │ └── spatialQueryMap.html │ │ │ ├── settings │ │ │ │ ├── clientConfiguration.html │ │ │ │ ├── conflictResolutionScriptSyntax.html │ │ │ │ ├── connectionStringAzureQueueStorage.html │ │ │ │ ├── connectionStringElasticSearch.html │ │ │ │ ├── connectionStringKafka.html │ │ │ │ ├── connectionStringOlap.html │ │ │ │ ├── connectionStringRabbitMq.html │ │ │ │ ├── connectionStringRaven.html │ │ │ │ ├── connectionStringSql.html │ │ │ │ ├── databaseSettings.html │ │ │ │ ├── editCustomAnalyzer.html │ │ │ │ ├── editCustomSorter.html │ │ │ │ ├── saveDatabaseSettingsConfirm.html │ │ │ │ └── timeSeries.html │ │ │ ├── status │ │ │ │ ├── bucketsReport.html │ │ │ │ ├── etlScriptDefinitionPreview.html │ │ │ │ ├── ioStats.html │ │ │ │ ├── ongoingTasksStats.html │ │ │ │ ├── sinkScriptDefinitionPreview.html │ │ │ │ ├── statistics.html │ │ │ │ ├── storageReport.html │ │ │ │ └── subscriptionQueryDefinitionPreview.html │ │ │ ├── tasks │ │ │ │ ├── backupNow.html │ │ │ │ ├── destinations │ │ │ │ │ ├── azureSettings.html │ │ │ │ │ ├── ftpSettings.html │ │ │ │ │ ├── glacierSettings.html │ │ │ │ │ ├── googleCloudSettings.html │ │ │ │ │ └── s3Settings.html │ │ │ │ ├── editAzureQueueStorageEtlTask.html │ │ │ │ ├── editElasticSearchEtlTask.html │ │ │ │ ├── editExternalReplicationTask.html │ │ │ │ ├── editKafkaEtlTask.html │ │ │ │ ├── editKafkaSinkTask.html │ │ │ │ ├── editOlapEtlTask.html │ │ │ │ ├── editPeriodicBackupTask.html │ │ │ │ ├── editRabbitMqEtlTask.html │ │ │ │ ├── editRabbitMqSinkTask.html │ │ │ │ ├── editRavenEtlTask.html │ │ │ │ ├── editReplicationHubTask.html │ │ │ │ ├── editReplicationSinkTask.html │ │ │ │ ├── editSqlEtlTask.html │ │ │ │ ├── editSubscriptionTask.html │ │ │ │ ├── exportDatabase.html │ │ │ │ ├── generateReplicationCertificateConfirm.html │ │ │ │ ├── importCollectionFromCsv.html │ │ │ │ ├── importDatabaseFromFile.html │ │ │ │ ├── importDatabaseFromSql.html │ │ │ │ ├── importParent.html │ │ │ │ ├── migrateDatabase.html │ │ │ │ ├── migrateRavenDbDatabase.html │ │ │ │ ├── optionsPerQueueEtl.html │ │ │ │ ├── queueSinkSyntax.html │ │ │ │ ├── referenceUsageDialog.html │ │ │ │ ├── smugglerDatabaseRecord.html │ │ │ │ ├── subscriptionRqlSyntax.html │ │ │ │ └── transformationScriptSyntax.html │ │ │ └── timeSeries │ │ │ │ ├── deleteTimeSeries.html │ │ │ │ ├── editTimeSeries.html │ │ │ │ ├── editTimeSeriesEntry.html │ │ │ │ └── filterTimeSeries.html │ │ │ ├── dialog.html │ │ │ ├── eula │ │ │ └── license.html │ │ │ ├── eulaShell.html │ │ │ ├── manage │ │ │ ├── addClusterNode.html │ │ │ ├── adminLogs.html │ │ │ ├── adminLogsTrafficWatchDialog.html │ │ │ ├── assignCores.html │ │ │ ├── captureStackTraces.html │ │ │ ├── certificates.html │ │ │ ├── cluster.html │ │ │ ├── configureEventListenerDialog.html │ │ │ ├── configureMicrosoftLogsDialog.html │ │ │ ├── createServerWideTask.html │ │ │ ├── debugAdvancedClusterDebug.html │ │ │ ├── debugAdvancedClusterSnapshotInstallation.html │ │ │ ├── debugAdvancedMemoryMappedFiles.html │ │ │ ├── debugAdvancedObserverLog.html │ │ │ ├── debugAdvancedParent.html │ │ │ ├── debugAdvancedRecordTransactionCommands.html │ │ │ ├── debugAdvancedReplayTransactionCommands.html │ │ │ ├── debugAdvancedThreadsRuntime.html │ │ │ ├── editServerWideBackup.html │ │ │ ├── editServerWideCustomAnalyzer.html │ │ │ ├── editServerWideCustomSorter.html │ │ │ ├── editServerWideExternalReplication.html │ │ │ ├── queryTimingsDialog.html │ │ │ ├── runningQueries.html │ │ │ ├── serverSettings.html │ │ │ ├── serverWideIoStats.html │ │ │ ├── serverWideTasks.html │ │ │ ├── storageReport.html │ │ │ ├── threadStackTrace.html │ │ │ ├── trafficWatch.html │ │ │ └── trafficWatchQueriesDialog.html │ │ │ ├── notifications │ │ │ └── notificationCenter.html │ │ │ ├── partial │ │ │ ├── backupConfigurationScript.html │ │ │ ├── backupDestinationLocal.html │ │ │ ├── backupDestinationTestCredentialsResults.html │ │ │ ├── backupDestinations.html │ │ │ ├── certificateUploadInfoForOngoingTasks.html │ │ │ ├── columnsSelector.html │ │ │ ├── databaseGroupLegend.html │ │ │ ├── ioStatsGraph.html │ │ │ ├── pinResponsibleNodeTextScript.html │ │ │ ├── taskResponsibleNodeSection.html │ │ │ └── taskResponsibleNodeSection_ForBackup.html │ │ │ ├── resources │ │ │ ├── addNewNodeToDatabaseGroup.html │ │ │ ├── addNewNodeToShard.html │ │ │ ├── addNewOrchestratorToDatabaseGroup.html │ │ │ ├── addNewShardToDatabaseGroup.html │ │ │ ├── addWidgetModal.html │ │ │ ├── clusterDashboard.html │ │ │ ├── compactDatabaseDialog.html │ │ │ ├── deleteDatabaseConfirm.html │ │ │ ├── disableDatabaseToggleConfirm.html │ │ │ ├── disableIndexingToggleConfirm.html │ │ │ ├── setupEncryptionKey.html │ │ │ └── widgets │ │ │ │ ├── clusterOverviewWidget.html │ │ │ │ ├── cpuUsageWidget.html │ │ │ │ ├── databaseIndexingWidget.html │ │ │ │ ├── databaseOverviewWidget.html │ │ │ │ ├── databaseStorageWidget.html │ │ │ │ ├── databaseTrafficWidget.html │ │ │ │ ├── gcInfoWidget.html │ │ │ │ ├── indexingWidget.html │ │ │ │ ├── ioStatsWidget.html │ │ │ │ ├── licenseWidget.html │ │ │ │ ├── memoryUsageWidget.html │ │ │ │ ├── ongoingTasksWidget.html │ │ │ │ ├── settings │ │ │ │ ├── ioStatsWidgetSettings.html │ │ │ │ └── storageWidgetSettings.html │ │ │ │ ├── storageWidget.html │ │ │ │ ├── trafficWidget.html │ │ │ │ └── welcomeWidget.html │ │ │ ├── shell.html │ │ │ ├── shell │ │ │ ├── chooseTheme.html │ │ │ ├── feedback.html │ │ │ └── registration.html │ │ │ ├── twoFactorShell.html │ │ │ ├── usageStats.html │ │ │ └── wizard │ │ │ ├── certificate.html │ │ │ ├── continueConfiguration.html │ │ │ ├── domain.html │ │ │ ├── finish.html │ │ │ ├── license.html │ │ │ ├── nodes.html │ │ │ ├── secureInstructions.html │ │ │ ├── security.html │ │ │ ├── setupShell.html │ │ │ ├── unsecured.html │ │ │ └── welcome.html │ │ ├── Content │ │ ├── ace │ │ │ ├── ace.js │ │ │ ├── ext-language_tools.js │ │ │ ├── ext-searchbox.js │ │ │ ├── mode-csharp.js │ │ │ ├── mode-javascript.js │ │ │ ├── mode-json.js │ │ │ ├── mode-json_newline_friendly.js │ │ │ ├── mode-mysql.js │ │ │ ├── mode-ravenMapLinq.js │ │ │ ├── mode-ravenReduceLinq.js │ │ │ ├── mode-raven_document.js │ │ │ ├── mode-raven_document_diff.js │ │ │ ├── mode-raven_document_newline_friendly.js │ │ │ ├── mode-rql.js │ │ │ ├── mode-sql.js │ │ │ ├── mode-sqlserver.js │ │ │ ├── mode-text.js │ │ │ ├── theme-ambiance.js │ │ │ ├── theme-pastel_on_dark.js │ │ │ ├── theme-raven.js │ │ │ ├── worker-javascript.js │ │ │ ├── worker-json.js │ │ │ ├── worker-raven_document.js │ │ │ └── worker-rql.js │ │ ├── css │ │ │ ├── _bs5.scss │ │ │ ├── ace.less │ │ │ ├── animations.less │ │ │ ├── basic-layout.less │ │ │ ├── bootstrap-duration-picker.less │ │ │ ├── bootstrap │ │ │ │ ├── .csscomb.json │ │ │ │ ├── .csslintrc │ │ │ │ ├── _notes │ │ │ │ │ ├── bootstrap.less.mno │ │ │ │ │ ├── grid.less.mno │ │ │ │ │ ├── responsive-utilities.less.mno │ │ │ │ │ └── variables.less.mno │ │ │ │ ├── alerts.less │ │ │ │ ├── badges.less │ │ │ │ ├── bootstrap.less │ │ │ │ ├── breadcrumbs.less │ │ │ │ ├── button-groups.less │ │ │ │ ├── buttons.less │ │ │ │ ├── carousel.less │ │ │ │ ├── close.less │ │ │ │ ├── code.less │ │ │ │ ├── component-animations.less │ │ │ │ ├── dropdowns.less │ │ │ │ ├── forms.less │ │ │ │ ├── glyphicons.less │ │ │ │ ├── grid.less │ │ │ │ ├── input-groups.less │ │ │ │ ├── jumbotron.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── media.less │ │ │ │ ├── mixins.less │ │ │ │ ├── mixins │ │ │ │ │ ├── _notes │ │ │ │ │ │ ├── grid-framework.less.mno │ │ │ │ │ │ └── grid.less.mno │ │ │ │ │ ├── alerts.less │ │ │ │ │ ├── background-variant.less │ │ │ │ │ ├── badge-variant.less │ │ │ │ │ ├── border-radius.less │ │ │ │ │ ├── buttons.less │ │ │ │ │ ├── center-block.less │ │ │ │ │ ├── clearfix.less │ │ │ │ │ ├── forms.less │ │ │ │ │ ├── gradients.less │ │ │ │ │ ├── grid-framework.less │ │ │ │ │ ├── grid.less │ │ │ │ │ ├── hide-text.less │ │ │ │ │ ├── image.less │ │ │ │ │ ├── labels.less │ │ │ │ │ ├── list-group.less │ │ │ │ │ ├── nav-divider.less │ │ │ │ │ ├── nav-vertical-align.less │ │ │ │ │ ├── opacity.less │ │ │ │ │ ├── pagination.less │ │ │ │ │ ├── panels.less │ │ │ │ │ ├── progress-bar.less │ │ │ │ │ ├── reset-filter.less │ │ │ │ │ ├── reset-text.less │ │ │ │ │ ├── resize.less │ │ │ │ │ ├── responsive-visibility.less │ │ │ │ │ ├── size.less │ │ │ │ │ ├── tab-focus.less │ │ │ │ │ ├── table-row.less │ │ │ │ │ ├── text-emphasis.less │ │ │ │ │ ├── text-overflow.less │ │ │ │ │ └── vendor-prefixes.less │ │ │ │ ├── modals.less │ │ │ │ ├── navbar.less │ │ │ │ ├── navs.less │ │ │ │ ├── normalize.less │ │ │ │ ├── pager.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── popovers.less │ │ │ │ ├── print.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── responsive-embed.less │ │ │ │ ├── responsive-utilities.less │ │ │ │ ├── scaffolding.less │ │ │ │ ├── tables.less │ │ │ │ ├── theme.less │ │ │ │ ├── thumbnails.less │ │ │ │ ├── tooltip.less │ │ │ │ ├── type.less │ │ │ │ ├── utilities.less │ │ │ │ ├── variables-body.less │ │ │ │ ├── variables-header.less │ │ │ │ └── wells.less │ │ │ ├── bs5-styles-blue.scss │ │ │ ├── bs5-styles-classic.scss │ │ │ ├── bs5-styles-light.scss │ │ │ ├── bs5-styles.scss │ │ │ ├── checkbox-toggle.less │ │ │ ├── column-selector.less │ │ │ ├── external-styles.less │ │ │ ├── feedback.less │ │ │ ├── fonts │ │ │ │ ├── Figtree-Italic[wght].woff2 │ │ │ │ ├── Figtree[wght].woff2 │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ ├── glyphicons-halflings-regular.woff2 │ │ │ │ ├── icomoon.font.js │ │ │ │ ├── icomoon.template.css.hbs │ │ │ │ ├── icomoon │ │ │ │ │ ├── about.svg │ │ │ │ │ ├── accept.svg │ │ │ │ │ ├── access-admin.svg │ │ │ │ │ ├── access-read-write.svg │ │ │ │ │ ├── access-read.svg │ │ │ │ │ ├── additional-assemblies.svg │ │ │ │ │ ├── additional-sources.svg │ │ │ │ │ ├── admin-logs.svg │ │ │ │ │ ├── administrator-js-console.svg │ │ │ │ │ ├── alert.svg │ │ │ │ │ ├── alerts.svg │ │ │ │ │ ├── api-keys.svg │ │ │ │ │ ├── apple.svg │ │ │ │ │ ├── arrow-dashed.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── arrow-filled-down.svg │ │ │ │ │ ├── arrow-filled-left.svg │ │ │ │ │ ├── arrow-filled-right.svg │ │ │ │ │ ├── arrow-filled-up.svg │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ ├── arrow-thin-bottom.svg │ │ │ │ │ ├── arrow-thin-left.svg │ │ │ │ │ ├── arrow-thin-right.svg │ │ │ │ │ ├── arrow-thin-top.svg │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ ├── arrow.svg │ │ │ │ │ ├── attachment.svg │ │ │ │ │ ├── average.svg │ │ │ │ │ ├── aws.svg │ │ │ │ │ ├── azure-queue-storage-etl.svg │ │ │ │ │ ├── azure-queue-storage.svg │ │ │ │ │ ├── azure.svg │ │ │ │ │ ├── backup-history.svg │ │ │ │ │ ├── backup-snapshot.svg │ │ │ │ │ ├── backup.svg │ │ │ │ │ ├── backup2.svg │ │ │ │ │ ├── backups.svg │ │ │ │ │ ├── book.svg │ │ │ │ │ ├── bug.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── cancel.svg │ │ │ │ │ ├── certificate.svg │ │ │ │ │ ├── changes.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ ├── chrome.svg │ │ │ │ │ ├── circle-filled.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── clean.svg │ │ │ │ │ ├── clear.svg │ │ │ │ │ ├── clearance.svg │ │ │ │ │ ├── client-configuration.svg │ │ │ │ │ ├── client.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── cloud.svg │ │ │ │ │ ├── cluster-dashboard.svg │ │ │ │ │ ├── cluster-log.svg │ │ │ │ │ ├── cluster-member.svg │ │ │ │ │ ├── cluster-node.svg │ │ │ │ │ ├── cluster-promotable.svg │ │ │ │ │ ├── cluster-rehab.svg │ │ │ │ │ ├── cluster-watcher.svg │ │ │ │ │ ├── cluster-wide-database-settings.svg │ │ │ │ │ ├── cluster.svg │ │ │ │ │ ├── cmp-xchg.svg │ │ │ │ │ ├── code.svg │ │ │ │ │ ├── coffee.svg │ │ │ │ │ ├── collapse-horizontal.svg │ │ │ │ │ ├── collapse-vertical.svg │ │ │ │ │ ├── collapse.svg │ │ │ │ │ ├── collections-storage.svg │ │ │ │ │ ├── community.svg │ │ │ │ │ ├── compact.svg │ │ │ │ │ ├── config.svg │ │ │ │ │ ├── conflicts-resolution.svg │ │ │ │ │ ├── conflicts.svg │ │ │ │ │ ├── connected.svg │ │ │ │ │ ├── connection-lost.svg │ │ │ │ │ ├── console.svg │ │ │ │ │ ├── copy-to-clipboard.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── corax-all-entries-match.svg │ │ │ │ │ ├── corax-backward.svg │ │ │ │ │ ├── corax-boosting-match.svg │ │ │ │ │ ├── corax-fallback.svg │ │ │ │ │ ├── corax-forward.svg │ │ │ │ │ ├── corax-include-null-match.svg │ │ │ │ │ ├── corax-memoization-match.svg │ │ │ │ │ ├── corax-multi-term-match.svg │ │ │ │ │ ├── corax-operator-and.svg │ │ │ │ │ ├── corax-operator-andnot.svg │ │ │ │ │ ├── corax-operator-or.svg │ │ │ │ │ ├── corax-phrase-query.svg │ │ │ │ │ ├── corax-sort-az.svg │ │ │ │ │ ├── corax-sort-za.svg │ │ │ │ │ ├── corax-sorting-match.svg │ │ │ │ │ ├── corax-spatial-match.svg │ │ │ │ │ ├── corax-term-match.svg │ │ │ │ │ ├── corax-unary-match.svg │ │ │ │ │ ├── crane.svg │ │ │ │ │ ├── create-sample-data.svg │ │ │ │ │ ├── crown.svg │ │ │ │ │ ├── csharp-logo.svg │ │ │ │ │ ├── csharp.svg │ │ │ │ │ ├── csv-export.svg │ │ │ │ │ ├── csv-import.svg │ │ │ │ │ ├── custom-analyzers.svg │ │ │ │ │ ├── custom-functions.svg │ │ │ │ │ ├── custom-sorters.svg │ │ │ │ │ ├── cut.svg │ │ │ │ │ ├── danger.svg │ │ │ │ │ ├── dashboard.svg │ │ │ │ │ ├── data-archival.svg │ │ │ │ │ ├── data-subscriptions.svg │ │ │ │ │ ├── database-client-configuration.svg │ │ │ │ │ ├── database-cutout.svg │ │ │ │ │ ├── database-home.svg │ │ │ │ │ ├── database-id.svg │ │ │ │ │ ├── database-record.svg │ │ │ │ │ ├── database-settings.svg │ │ │ │ │ ├── database-studio-configuration.svg │ │ │ │ │ ├── database.svg │ │ │ │ │ ├── dbgroup-member.svg │ │ │ │ │ ├── dbgroup-promotable.svg │ │ │ │ │ ├── dbgroup-rehab.svg │ │ │ │ │ ├── dbgroup-watcher.svg │ │ │ │ │ ├── dbgroup.svg │ │ │ │ │ ├── debug-advanced.svg │ │ │ │ │ ├── debug.svg │ │ │ │ │ ├── debug2.svg │ │ │ │ │ ├── default.svg │ │ │ │ │ ├── demote.svg │ │ │ │ │ ├── details.svg │ │ │ │ │ ├── diff.svg │ │ │ │ │ ├── disable.svg │ │ │ │ │ ├── disabled.svg │ │ │ │ │ ├── disconnect.svg │ │ │ │ │ ├── disconnected.svg │ │ │ │ │ ├── disk-io-viewer.svg │ │ │ │ │ ├── disk-support.svg │ │ │ │ │ ├── dismiss-all.svg │ │ │ │ │ ├── document-cutout.svg │ │ │ │ │ ├── document-expiration.svg │ │ │ │ │ ├── document-group.svg │ │ │ │ │ ├── document-metadata.svg │ │ │ │ │ ├── document.svg │ │ │ │ │ ├── document2.svg │ │ │ │ │ ├── documents-compression.svg │ │ │ │ │ ├── documents-query.svg │ │ │ │ │ ├── documents.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── drive.svg │ │ │ │ │ ├── dump-index-files.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── edited.svg │ │ │ │ │ ├── elastic-search-etl.svg │ │ │ │ │ ├── elasticsearch.svg │ │ │ │ │ ├── embed.svg │ │ │ │ │ ├── empty-set.svg │ │ │ │ │ ├── encryption.svg │ │ │ │ │ ├── etag.svg │ │ │ │ │ ├── etl.svg │ │ │ │ │ ├── exclamation.svg │ │ │ │ │ ├── exit-fullscreen.svg │ │ │ │ │ ├── expand-horizontal.svg │ │ │ │ │ ├── expand-vertical.svg │ │ │ │ │ ├── expand.svg │ │ │ │ │ ├── experimental.svg │ │ │ │ │ ├── expiration.svg │ │ │ │ │ ├── export-database.svg │ │ │ │ │ ├── export.svg │ │ │ │ │ ├── expos-refresh.svg │ │ │ │ │ ├── external-replication.svg │ │ │ │ │ ├── facebook.svg │ │ │ │ │ ├── feedback.svg │ │ │ │ │ ├── file-import.svg │ │ │ │ │ ├── filesystem.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── firefox.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── fold.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── force.svg │ │ │ │ │ ├── fullscreen.svg │ │ │ │ │ ├── gather-debug-information.svg │ │ │ │ │ ├── gcp.svg │ │ │ │ │ ├── generation.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── global-config.svg │ │ │ │ │ ├── global-cutout.svg │ │ │ │ │ ├── global.svg │ │ │ │ │ ├── googleplus.svg │ │ │ │ │ ├── graph-range.svg │ │ │ │ │ ├── graph.svg │ │ │ │ │ ├── group.svg │ │ │ │ │ ├── hammer-driver.svg │ │ │ │ │ ├── hammer.svg │ │ │ │ │ ├── hash.svg │ │ │ │ │ ├── help.svg │ │ │ │ │ ├── home.svg │ │ │ │ │ ├── hot-spare.svg │ │ │ │ │ ├── icons_backup.svg │ │ │ │ │ ├── icons_database.svg │ │ │ │ │ ├── identities.svg │ │ │ │ │ ├── import-database.svg │ │ │ │ │ ├── import.svg │ │ │ │ │ ├── indent.svg │ │ │ │ │ ├── index-batch-size.svg │ │ │ │ │ ├── index-cleanup.svg │ │ │ │ │ ├── index-errors.svg │ │ │ │ │ ├── index-export.svg │ │ │ │ │ ├── index-fields.svg │ │ │ │ │ ├── index-history.svg │ │ │ │ │ ├── index-import.svg │ │ │ │ │ ├── index-stats.svg │ │ │ │ │ ├── index.svg │ │ │ │ │ ├── indexes-query.svg │ │ │ │ │ ├── indexing-performance.svg │ │ │ │ │ ├── indexing-progess.svg │ │ │ │ │ ├── indexing.svg │ │ │ │ │ ├── infinity.svg │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── integrations.svg │ │ │ │ │ ├── io-test.svg │ │ │ │ │ ├── javascript.svg │ │ │ │ │ ├── json.svg │ │ │ │ │ ├── kafka-etl.svg │ │ │ │ │ ├── kafka-sink.svg │ │ │ │ │ ├── kafka.svg │ │ │ │ │ ├── key.svg │ │ │ │ │ ├── kill-query.svg │ │ │ │ │ ├── latest.svg │ │ │ │ │ ├── lets-encrypt.svg │ │ │ │ │ ├── license-information.svg │ │ │ │ │ ├── license.svg │ │ │ │ │ ├── link.svg │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ ├── linux.svg │ │ │ │ │ ├── list-of-indexes.svg │ │ │ │ │ ├── list.svg │ │ │ │ │ ├── load-index.svg │ │ │ │ │ ├── load-map-reduce.svg │ │ │ │ │ ├── lock-cutout.svg │ │ │ │ │ ├── lock-error.svg │ │ │ │ │ ├── lock-sidebyside.svg │ │ │ │ │ ├── lock.svg │ │ │ │ │ ├── logo.svg │ │ │ │ │ ├── logout.svg │ │ │ │ │ ├── logs.svg │ │ │ │ │ ├── magic-wand.svg │ │ │ │ │ ├── manage-connection-strings.svg │ │ │ │ │ ├── manage-dbgroup.svg │ │ │ │ │ ├── manage-ongoing-tasks.svg │ │ │ │ │ ├── manage-server-io-test.svg │ │ │ │ │ ├── manage-server-running-queries.svg │ │ │ │ │ ├── manage-server.svg │ │ │ │ │ ├── map-reduce-visualizer.svg │ │ │ │ │ ├── map-reduce.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── memory.svg │ │ │ │ │ ├── menu-collapse.svg │ │ │ │ │ ├── menu-expand.svg │ │ │ │ │ ├── menu-icons_checkbox-on.svg │ │ │ │ │ ├── menu-icons_replication-58.svg │ │ │ │ │ ├── menu-icons_settings.svg │ │ │ │ │ ├── menu-icons_srorage.svg │ │ │ │ │ ├── menu-icons_stats-36.svg │ │ │ │ │ ├── menu.svg │ │ │ │ │ ├── merge.svg │ │ │ │ │ ├── metrics.svg │ │ │ │ │ ├── minus.svg │ │ │ │ │ ├── nested-document-property.svg │ │ │ │ │ ├── new-counter.svg │ │ │ │ │ ├── new-database.svg │ │ │ │ │ ├── new-document.svg │ │ │ │ │ ├── new-filesystem.svg │ │ │ │ │ ├── new-time-series - Copy.svg │ │ │ │ │ ├── new-time-series.svg │ │ │ │ │ ├── newline.svg │ │ │ │ │ ├── newtab.svg │ │ │ │ │ ├── node-add.svg │ │ │ │ │ ├── node-leader.svg │ │ │ │ │ ├── node.svg │ │ │ │ │ ├── notifications.svg │ │ │ │ │ ├── olap-etl.svg │ │ │ │ │ ├── olap.svg │ │ │ │ │ ├── ongoing-tasks.svg │ │ │ │ │ ├── orchestrator.svg │ │ │ │ │ ├── order.svg │ │ │ │ │ ├── os.svg │ │ │ │ │ ├── other.svg │ │ │ │ │ ├── output-collection.svg │ │ │ │ │ ├── parallel-stacks.svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ ├── patch.svg │ │ │ │ │ ├── path.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── percent.svg │ │ │ │ │ ├── periodic-backup.svg │ │ │ │ │ ├── periodic-export-13.svg │ │ │ │ │ ├── periodic-export.svg │ │ │ │ │ ├── phone.svg │ │ │ │ │ ├── pin.svg │ │ │ │ │ ├── pinned.svg │ │ │ │ │ ├── placeholder (1).svg │ │ │ │ │ ├── placeholder.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── play2.svg │ │ │ │ │ ├── plus.svg │ │ │ │ │ ├── postgresql.svg │ │ │ │ │ ├── postpone.svg │ │ │ │ │ ├── powerbi.svg │ │ │ │ │ ├── prefetches.svg │ │ │ │ │ ├── preview-off.svg │ │ │ │ │ ├── preview.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── processor.svg │ │ │ │ │ ├── promote.svg │ │ │ │ │ ├── pull-replication-agent.svg │ │ │ │ │ ├── pull-replication-hub.svg │ │ │ │ │ ├── queries.svg │ │ │ │ │ ├── query.svg │ │ │ │ │ ├── quotas.svg │ │ │ │ │ ├── rabbitmq-etl.svg │ │ │ │ │ ├── rabbitmq-sink.svg │ │ │ │ │ ├── rabbitmq.svg │ │ │ │ │ ├── random.svg │ │ │ │ │ ├── raven.svg │ │ │ │ │ ├── ravendb-data.svg │ │ │ │ │ ├── ravendb-etl.svg │ │ │ │ │ ├── reassign-cores.svg │ │ │ │ │ ├── recent.svg │ │ │ │ │ ├── reference-pattern.svg │ │ │ │ │ ├── referenced-collections.svg │ │ │ │ │ ├── refresh-stats.svg │ │ │ │ │ ├── refresh.svg │ │ │ │ │ ├── rejected.svg │ │ │ │ │ ├── reorder.svg │ │ │ │ │ ├── replace.svg │ │ │ │ │ ├── replication-stats.svg │ │ │ │ │ ├── replication.svg │ │ │ │ │ ├── reset-index.svg │ │ │ │ │ ├── reset.svg │ │ │ │ │ ├── resources.svg │ │ │ │ │ ├── restore-backup.svg │ │ │ │ │ ├── restore.svg │ │ │ │ │ ├── revert-revisions.svg │ │ │ │ │ ├── revert.svg │ │ │ │ │ ├── revisions-bin.svg │ │ │ │ │ ├── revisions.svg │ │ │ │ │ ├── road-cone.svg │ │ │ │ │ ├── rocket.svg │ │ │ │ │ ├── running-queries.svg │ │ │ │ │ ├── running-tasks.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── search.svg │ │ │ │ │ ├── server-settings.svg │ │ │ │ │ ├── server-smuggling.svg │ │ │ │ │ ├── server-topology.svg │ │ │ │ │ ├── server-wide-backup.svg │ │ │ │ │ ├── server-wide-custom-analyzers.svg │ │ │ │ │ ├── server-wide-custom-sorters.svg │ │ │ │ │ ├── server-wide-replication.svg │ │ │ │ │ ├── server-wide-tasks.svg │ │ │ │ │ ├── server.svg │ │ │ │ │ ├── settings.svg │ │ │ │ │ ├── shard.svg │ │ │ │ │ ├── sharding.svg │ │ │ │ │ ├── shield.svg │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ ├── skip.svg │ │ │ │ │ ├── snapshot-backup.svg │ │ │ │ │ ├── sortby.svg │ │ │ │ │ ├── sparkles.svg │ │ │ │ │ ├── spatial-map-view.svg │ │ │ │ │ ├── sql-attachment.svg │ │ │ │ │ ├── sql-binary.svg │ │ │ │ │ ├── sql-boolean.svg │ │ │ │ │ ├── sql-boolean2.svg │ │ │ │ │ ├── sql-document-id.svg │ │ │ │ │ ├── sql-etl.svg │ │ │ │ │ ├── sql-many-to-one.svg │ │ │ │ │ ├── sql-number.svg │ │ │ │ │ ├── sql-one-to-many.svg │ │ │ │ │ ├── sql-replication-stats.svg │ │ │ │ │ ├── sql-replication.svg │ │ │ │ │ ├── sql-string.svg │ │ │ │ │ ├── sql-unsupported.svg │ │ │ │ │ ├── stack-traces.svg │ │ │ │ │ ├── star-filled.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── start.svg │ │ │ │ │ ├── stats-menu.svg │ │ │ │ │ ├── stats-running-queries.svg │ │ │ │ │ ├── stats.svg │ │ │ │ │ ├── stepdown.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── storage-free.svg │ │ │ │ │ ├── storage-used.svg │ │ │ │ │ ├── storage.svg │ │ │ │ │ ├── studio-config.svg │ │ │ │ │ ├── studio-configuration.svg │ │ │ │ │ ├── subscription.svg │ │ │ │ │ ├── subscriptions.svg │ │ │ │ │ ├── sum.svg │ │ │ │ │ ├── support.svg │ │ │ │ │ ├── swap.svg │ │ │ │ │ ├── system-storage.svg │ │ │ │ │ ├── system.svg │ │ │ │ │ ├── table.svg │ │ │ │ │ ├── tarfic-watch.svg │ │ │ │ │ ├── tasks-list.svg │ │ │ │ │ ├── tasks-menu.svg │ │ │ │ │ ├── tasks.svg │ │ │ │ │ ├── terms.svg │ │ │ │ │ ├── test.svg │ │ │ │ │ ├── theme.svg │ │ │ │ │ ├── thread-stack-trace.svg │ │ │ │ │ ├── thumb-down.svg │ │ │ │ │ ├── thumb-up.svg │ │ │ │ │ ├── tick.svg │ │ │ │ │ ├── timeseries-settings.svg │ │ │ │ │ ├── timeseries.svg │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ ├── topology.svg │ │ │ │ │ ├── traffic-watch.svg │ │ │ │ │ ├── traffic.svg │ │ │ │ │ ├── transaction-record-replay.svg │ │ │ │ │ ├── transaction-record.svg │ │ │ │ │ ├── transform-results.svg │ │ │ │ │ ├── transformer.svg │ │ │ │ │ ├── trash-cutout.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ ├── unencrypted.svg │ │ │ │ │ ├── unfold.svg │ │ │ │ │ ├── unlock.svg │ │ │ │ │ ├── unsecure.svg │ │ │ │ │ ├── unsupported-browser.svg │ │ │ │ │ ├── upgrade-arrow.svg │ │ │ │ │ ├── upload.svg │ │ │ │ │ ├── user-info.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── vector.svg │ │ │ │ │ ├── versioning.svg │ │ │ │ │ ├── waiting.svg │ │ │ │ │ ├── warning.svg │ │ │ │ │ ├── web-socket.svg │ │ │ │ │ ├── windows.svg │ │ │ │ │ ├── x.svg │ │ │ │ │ └── zombie.svg │ │ │ │ └── selection.json │ │ │ ├── icons.less │ │ │ ├── leaflet.less │ │ │ ├── list-view.less │ │ │ ├── modals.less │ │ │ ├── notification-center.less │ │ │ ├── pages │ │ │ │ ├── 2fa.less │ │ │ │ ├── admin-logs.less │ │ │ │ ├── backups.less │ │ │ │ ├── capture-stack-traces.less │ │ │ │ ├── certificates.less │ │ │ │ ├── cluster-dashboard.less │ │ │ │ ├── cluster.less │ │ │ │ ├── cmp-xchg.less │ │ │ │ ├── compaction-progress.less │ │ │ │ ├── conflicts.less │ │ │ │ ├── database-group-graph.less │ │ │ │ ├── database-group.less │ │ │ │ ├── database-settings.less │ │ │ │ ├── databaseIDs.less │ │ │ │ ├── databases.less │ │ │ │ ├── debug-advanced.less │ │ │ │ ├── details-providers.less │ │ │ │ ├── document-compression.less │ │ │ │ ├── documents-edit.less │ │ │ │ ├── documents.less │ │ │ │ ├── edit-backup.less │ │ │ │ ├── edit-index.less │ │ │ │ ├── edit-subscription.less │ │ │ │ ├── etl.less │ │ │ │ ├── eula.less │ │ │ │ ├── export-progress.less │ │ │ │ ├── identities.less │ │ │ │ ├── index-errors.less │ │ │ │ ├── index-performance.less │ │ │ │ ├── indexes-maintenance.less │ │ │ │ ├── indexes-terms.less │ │ │ │ ├── indexes.less │ │ │ │ ├── info-package.less │ │ │ │ ├── license.less │ │ │ │ ├── metrics.less │ │ │ │ ├── ongoing-tasks.less │ │ │ │ ├── other-migration.less │ │ │ │ ├── patch-global.less │ │ │ │ ├── patch.less │ │ │ │ ├── pull-replication.less │ │ │ │ ├── query-plan.less │ │ │ │ ├── query.less │ │ │ │ ├── registration.less │ │ │ │ ├── revisions.less │ │ │ │ ├── running-queries.less │ │ │ │ ├── sample-data.less │ │ │ │ ├── setup.less │ │ │ │ ├── sharding.less │ │ │ │ ├── sql-migration-progress.less │ │ │ │ ├── sql-migration.less │ │ │ │ ├── stats.less │ │ │ │ ├── storage-report.less │ │ │ │ ├── tasks-csvImport.less │ │ │ │ ├── tasks-sampleData.less │ │ │ │ ├── tasks-subscriptions.less │ │ │ │ ├── themes.less │ │ │ │ ├── time-series-config.less │ │ │ │ ├── time-series-details.less │ │ │ │ ├── time-series-edit.less │ │ │ │ ├── traffic-watch.less │ │ │ │ └── visualizer.less │ │ │ ├── prism.less │ │ │ ├── root.less │ │ │ ├── styles-blue.less │ │ │ ├── styles-classic.less │ │ │ ├── styles-common-root.less │ │ │ ├── styles-common-scoped.less │ │ │ ├── styles-light.less │ │ │ ├── styles.less │ │ │ ├── testing-elements.less │ │ │ ├── themes │ │ │ │ ├── blue-theme-colors-override.less │ │ │ │ ├── blue-theme-variables-override.less │ │ │ │ ├── classic-theme-colors-override.less │ │ │ │ ├── classic-theme-variables-override.less │ │ │ │ ├── light-theme-colors-override.less │ │ │ │ └── light-theme-variables-override.less │ │ │ ├── toastr.less │ │ │ ├── usageStats.less │ │ │ └── virtual-grid.less │ │ ├── custom_d3.js │ │ ├── custom_durandal_system.js │ │ ├── custom_ga.js │ │ ├── custom_qrcode.js │ │ ├── img │ │ │ ├── analytics-img.png │ │ │ ├── beta-license.png │ │ │ ├── blue-theme.svg │ │ │ ├── classic-theme.svg │ │ │ ├── connect.svg │ │ │ ├── connection-lost.svg │ │ │ ├── createDatabase │ │ │ │ ├── backup-source.svg │ │ │ │ ├── cluster.svg │ │ │ │ ├── encryption.svg │ │ │ │ ├── from-backup.svg │ │ │ │ ├── new-database.svg │ │ │ │ └── sharding.svg │ │ │ ├── create_package.svg │ │ │ ├── dark-theme.svg │ │ │ ├── documents.svg │ │ │ ├── feedback.png │ │ │ ├── feedback.svg │ │ │ ├── info-hub.svg │ │ │ ├── info_package.png │ │ │ ├── info_package.svg │ │ │ ├── leaflet │ │ │ │ ├── layers-2x.png │ │ │ │ ├── layers.png │ │ │ │ ├── layers.svg │ │ │ │ ├── marker-icon-2x copy.svg │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon-2x.svg │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-icon.svg │ │ │ ├── license.png │ │ │ ├── license.svg │ │ │ ├── license_multiple.png │ │ │ ├── light-theme.svg │ │ │ ├── loading_bkg.png │ │ │ ├── loading_bkg_light.png │ │ │ ├── new-database.svg │ │ │ ├── node.svg │ │ │ ├── orchestrator.svg │ │ │ ├── pages │ │ │ │ ├── about │ │ │ │ │ ├── passive-state-bg.svg │ │ │ │ │ ├── support.svg │ │ │ │ │ └── supportCharacter.svg │ │ │ │ └── indexCleanup │ │ │ │ │ ├── merge-indexes.svg │ │ │ │ │ ├── merge-suggestion-errors.svg │ │ │ │ │ ├── remove-subindexes.svg │ │ │ │ │ ├── remove-unused.svg │ │ │ │ │ └── unmergable-indexes.svg │ │ │ ├── qr_logo.png │ │ │ ├── ravendb_logo.png │ │ │ ├── ravendb_logo.svg │ │ │ ├── search-index.svg │ │ │ ├── setup-cluster.svg │ │ │ ├── shapes.svg │ │ │ ├── shard.svg │ │ │ ├── sharding │ │ │ │ ├── shard.png │ │ │ │ ├── shard.svg │ │ │ │ ├── shards.png │ │ │ │ └── shards.svg │ │ │ ├── splash-screen-ravendb-logo.svg │ │ │ ├── upgrade-license.svg │ │ │ └── widgets │ │ │ │ ├── chart-icon.svg │ │ │ │ ├── graph-icon.svg │ │ │ │ ├── list-icon.svg │ │ │ │ ├── text-icon.svg │ │ │ │ ├── topology-icon.svg │ │ │ │ └── welcome-icon.svg │ │ ├── rbush │ │ │ ├── quickselect.js │ │ │ └── rbush.js │ │ └── scss │ │ │ ├── _bs5extend.scss │ │ │ ├── _colors.scss │ │ │ ├── _custom-properties.scss │ │ │ ├── _fonts.scss │ │ │ ├── _layout-tools.scss │ │ │ ├── _main-menu.scss │ │ │ ├── _navbar.scss │ │ │ ├── _qrcode.scss │ │ │ ├── _reboot.scss │ │ │ ├── _root.scss │ │ │ ├── _sizes.scss │ │ │ ├── _variables.scss │ │ │ ├── bs5variables.scss │ │ │ └── pages │ │ │ ├── _cluster-dashboard.scss │ │ │ └── _stats.scss │ │ ├── icons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon-precomposed.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── mstile-150x150.png │ │ └── safari-pinned-tab.svg │ │ ├── index.html │ │ ├── version.txt │ │ └── web.config ├── Raven.TestDriver │ ├── GetDocumentStoreOptions.cs │ ├── Raven.TestDriver.csproj │ ├── RavenTestDriver.cs │ └── TestServerOptions.cs ├── Sparrow.Server │ ├── AsyncManualResetEvent.cs │ ├── Binary │ │ ├── Bit.cs │ │ └── BitReader.cs │ ├── ByteString.cs │ ├── Collections │ │ ├── AsyncQueue.cs │ │ ├── Persistent │ │ │ └── BinaryTree.cs │ │ └── SmallSet.cs │ ├── Compression │ │ ├── AdaptiveMemoryEncoderState.cs │ │ ├── Codes.cs │ │ ├── Encoder3Gram.cs │ │ ├── Encoder3GramSymbolSelector.cs │ │ ├── HopeEncoder.cs │ │ ├── HuTuckerCodeAssigner.cs │ │ ├── IEncoderAlgorithm.cs │ │ ├── IEncoderState.cs │ │ └── NativeMemoryEncoderState.cs │ ├── Constants.cs │ ├── ContentionLoggingLocker.cs │ ├── Debugging │ │ ├── DebugStuff.cs │ │ ├── ElectricFencedMemory.cs │ │ ├── PosixElectricFencedMemory.cs │ │ └── Win32ElectricFencedMemory.cs │ ├── Exceptions │ │ └── DiskFullException.cs │ ├── Extensions │ │ ├── RavenDateTimeExtensions.cs │ │ └── TcpExtensions.cs │ ├── Format.cs │ ├── IoChange.cs │ ├── Json │ │ └── Sync │ │ │ └── JsonOperationContextSyncApiExtensions.cs │ ├── LowMemory │ │ ├── CheckPageFileOnHdd.cs │ │ ├── LowMemoryMonitor.cs │ │ └── MemoryInformation.cs │ ├── Meters │ │ ├── DatabasePerformanceMetrics.cs │ │ ├── GeneralWaitPerformanceMetrics.cs │ │ ├── IoMeterBuffer.cs │ │ ├── IoMetrics.cs │ │ ├── PerformanceMetrics.cs │ │ └── TransactionPerformanceMetrics.cs │ ├── Platform │ │ ├── Pal.cs │ │ ├── PalDefinitions.cs │ │ ├── PalFlags.cs │ │ ├── PalHelper.cs │ │ ├── PlatformSpecific.cs │ │ ├── Posix │ │ │ ├── CGroupHelper.cs │ │ │ ├── Errno.cs │ │ │ ├── FilePermissions.cs │ │ │ ├── ISmapsReader.cs │ │ │ ├── ISmapsReaderResultAction.cs │ │ │ ├── Iovec.cs │ │ │ ├── KernelVirtualFileSystemUtils.cs │ │ │ ├── MAdvFlags.cs │ │ │ ├── MmapFlags.cs │ │ │ ├── MmapProts.cs │ │ │ ├── MsyncFlags.cs │ │ │ ├── OpenFlags.cs │ │ │ ├── PerPlatformValues.cs │ │ │ ├── PosixMemoryQueryMethods.cs │ │ │ ├── Prio.cs │ │ │ ├── ProtFlag.cs │ │ │ ├── SmapsFactory.cs │ │ │ ├── SmapsReadResult.cs │ │ │ ├── SmapsReader.cs │ │ │ ├── SmapsReaderJsonResults.cs │ │ │ ├── SmapsReaderNoAllocResults.cs │ │ │ ├── SmapsReaderResults.cs │ │ │ ├── SmapsReaderType.cs │ │ │ ├── SmapsRollupReader.cs │ │ │ ├── Syscall.cs │ │ │ ├── SysconfName.cs │ │ │ ├── WhenceFlags.cs │ │ │ ├── macOS │ │ │ │ ├── CtkHwIdentifiers.cs │ │ │ │ ├── CtlVmIdentifiersMacOs.cs │ │ │ │ ├── Flavor.cs │ │ │ │ ├── TopLevelIdentifiers.cs │ │ │ │ ├── host_cpu_load_info.cs │ │ │ │ ├── macSyscall.cs │ │ │ │ ├── vm_statistics64.cs │ │ │ │ └── xsw_usage.cs │ │ │ └── sysinfo_t.cs │ │ ├── SafeJournalHandle.cs │ │ ├── SafeMmapHandle.cs │ │ └── Win32 │ │ │ ├── Win32MemoryProtectMethods.cs │ │ │ ├── Win32MemoryQueryMethods.cs │ │ │ └── Win32ThreadsMethods.cs │ ├── Sodium.tt │ ├── Sparrow.Server.csproj │ ├── Strings │ │ ├── IStringDistance.cs │ │ ├── JaroWinklerDistance.cs │ │ ├── LevenshteinDistance.cs │ │ ├── NGramDistance.cs │ │ ├── NoStringDistance.cs │ │ └── StringsExtensions.cs │ ├── Threading │ │ └── AsyncGuard.cs │ ├── UnmanagedSpan.cs │ ├── Utils │ │ ├── BackupStream.cs │ │ ├── Base64.cs │ │ ├── DiffPages.cs │ │ ├── DiskStatsGetter │ │ │ ├── DiskStatsGetter.cs │ │ │ ├── DiskStatsResult.cs │ │ │ ├── IDiskStatsGetter.cs │ │ │ ├── IDiskStatsRawResult.cs │ │ │ ├── LinuxDiskStatsGetter.cs │ │ │ ├── LinuxDiskStatsRawResult.cs │ │ │ ├── NotImplementedDiskStatsGetter.cs │ │ │ ├── WindowsDiskStatsGetter.cs │ │ │ └── WindowsDiskStatsRawResult.cs │ │ ├── DiskUtils.cs │ │ ├── DisposableScope.cs │ │ ├── EchoStream.cs │ │ ├── GrowableBuffer.cs │ │ ├── ReusableStringReader.cs │ │ ├── Sorting.cs │ │ ├── SpecialChars.cs │ │ ├── StrongReference.cs │ │ ├── TaskExecutor.cs │ │ ├── ThreadNames.cs │ │ ├── UnguardedDisposableScope.cs │ │ └── VxSort │ │ │ ├── BitonicSort.AVX2.double.generated.cs │ │ │ ├── BitonicSort.AVX2.float.generated.cs │ │ │ ├── BitonicSort.AVX2.generated.cs │ │ │ ├── BitonicSort.AVX2.int.generated.cs │ │ │ ├── BitonicSort.AVX2.long.generated.cs │ │ │ ├── BitonicSort.AVX2.uint.generated.cs │ │ │ ├── BitonicSort.AVX2.ulong.generated.cs │ │ │ ├── VectorizedSort.AVX2.double.generated.cs │ │ │ ├── VectorizedSort.AVX2.float.generated.cs │ │ │ ├── VectorizedSort.AVX2.generated.cs │ │ │ ├── VectorizedSort.AVX2.int.generated.cs │ │ │ ├── VectorizedSort.AVX2.long.generated.cs │ │ │ ├── VectorizedSort.AVX2.uint.generated.cs │ │ │ ├── VectorizedSort.AVX2.ulong.generated.cs │ │ │ ├── VectorizedSort.cs │ │ │ ├── VectorizedSort.generated.cs │ │ │ ├── codegen │ │ │ ├── bitonic_avx2.py │ │ │ ├── bitonic_avx512.py │ │ │ ├── bitonic_gen.py │ │ │ ├── bitonic_isa.py │ │ │ ├── configuration.py │ │ │ ├── main.py │ │ │ ├── run.cmd │ │ │ ├── sorting_avx2.py │ │ │ ├── sorting_gen.py │ │ │ ├── sorting_isa.py │ │ │ ├── sorting_main.py │ │ │ └── utils.py │ │ │ └── readme.md │ └── sodium-api.txt ├── Sparrow │ ├── AdvInstructionSet.cs │ ├── Backups │ │ ├── BackupCompressionAlgorithm.cs │ │ └── SnapshotBackupCompressionAlgorithm.cs │ ├── Binary │ │ ├── BitVector.cs │ │ ├── Bits.cs │ │ ├── Numbers.cs │ │ └── PtrBitVector.cs │ ├── Branchless.cs │ ├── Collections │ │ ├── ConcurrentSet.cs │ │ ├── FastList.cs │ │ ├── FastStack.cs │ │ └── LimitedConcurrentSet.cs │ ├── Comparers.cs │ ├── Compression │ │ ├── LZ4.cs │ │ ├── SmallStringCompression.cs │ │ ├── VariableSizeEncoding.cs │ │ └── ZigZagEncoding.cs │ ├── Constants.cs │ ├── Debugging │ │ └── DebugStuff.cs │ ├── DefaultFormat.cs │ ├── Encodings.cs │ ├── EnumerableExtensions.cs │ ├── Exceptions │ │ ├── InvalidStartOfObjectException.cs │ │ └── MemoryInfoException.cs │ ├── Extensions │ │ ├── EncodingsExtensions.cs │ │ ├── NumberExtensions.cs │ │ ├── RavenDateTimeExtensions.cs │ │ ├── StreamExtensions.cs │ │ ├── StringExtensions.cs │ │ ├── TypeExtensions.cs │ │ └── WebSocketExtensions.cs │ ├── Hashing.Streamed.cs │ ├── Hashing.cs │ ├── Json │ │ ├── AbstractBlittableJsonDocumentBuilder.cs │ │ ├── AbstractBlittableJsonTextWriter.cs │ │ ├── ArenaMemoryAllocator.cs │ │ ├── AsyncBlittableJsonTextWriter.cs │ │ ├── BlittableJsonDocumentBuilder.cs │ │ ├── BlittableJsonReaderArray.cs │ │ ├── BlittableJsonReaderBase.cs │ │ ├── BlittableJsonReaderObject.cs │ │ ├── BlittableJsonTextWriterExtensions.cs │ │ ├── BlittableJsonToken.cs │ │ ├── BlittableWriter.cs │ │ ├── CachedProperties.cs │ │ ├── CreateFromBlittableJsonAttribute.cs │ │ ├── ForceJsonSerializationAttribute.cs │ │ ├── IBlittableJsonContainer.cs │ │ ├── IBlittableJsonTextWriter.cs │ │ ├── IDynamicJsonValueConvertible.cs │ │ ├── IFillFromBlittableJson.cs │ │ ├── JsonContextPool.cs │ │ ├── JsonContextPoolBase.cs │ │ ├── JsonDeserializationBase.cs │ │ ├── JsonDeserializationIgnoreAttribute.cs │ │ ├── JsonDeserializationStringDictionaryAttribute.cs │ │ ├── JsonOperationContext.Sync.cs │ │ ├── JsonOperationContext.cs │ │ ├── LazyCompressedStringValue.cs │ │ ├── LazyNumberValue.cs │ │ ├── LazyStringParser.cs │ │ ├── LazyStringValue.cs │ │ ├── ManualBlittableJsonDocumentBuilder.cs │ │ ├── Parsing │ │ │ ├── IJsonParser.cs │ │ │ ├── JsonParserState.cs │ │ │ ├── JsonParserToken.cs │ │ │ ├── ObjectJsonParser.cs │ │ │ ├── UnmanagedJsonParser.cs │ │ │ └── UnmanagedJsonParserHelper.cs │ │ ├── PathCache.cs │ │ ├── PerCoreContainer.cs │ │ ├── Sync │ │ │ └── BlittableJsonTextWriter.cs │ │ ├── UnmanagedBuffersPool.cs │ │ └── UnmanagedWriteBuffer.cs │ ├── Logging │ │ ├── LogEntry.cs │ │ ├── LogMessageEntry.cs │ │ ├── LogMode.cs │ │ ├── Logger.cs │ │ ├── LoggingFilter.cs │ │ └── LoggingSource.cs │ ├── LowMemory │ │ ├── AbstractLowMemoryMonitor.cs │ │ ├── DirtyMemoryState.cs │ │ ├── HighDirtyMemoryException.cs │ │ ├── ILowMemoryHandler.cs │ │ ├── LowMemoryException.cs │ │ ├── LowMemoryNotification.cs │ │ ├── LowMemorySeverity.cs │ │ └── MemoryInfoResult.cs │ ├── Memory.cs │ ├── ObjectPool.cs │ ├── PeepingTomStream.cs │ ├── Platform │ │ ├── PlatformDetails.cs │ │ ├── Sodium.Additional.cs │ │ └── Sodium.cs │ ├── Properties │ │ ├── AssemblyInfo.Linux.cs │ │ └── AssemblyInfo.Windows.cs │ ├── RecyclableMemoryStreamFactory.cs │ ├── Size.cs │ ├── Sorter.cs │ ├── SpanEnumerators.cs │ ├── Sparrow.csproj │ ├── StringComparer.cs │ ├── StringSegment.cs │ ├── StringSegmentComparer.cs │ ├── Threading │ │ ├── DisposeOnce.cs │ │ ├── LightWeightThreadLocal.cs │ │ ├── MultipleUseFlag.cs │ │ ├── SharedMultipleUseFlag.cs │ │ └── SingleUseFlag.cs │ ├── TimeValue.cs │ ├── TypesHelper.cs │ ├── UnmanagedMemory.cs │ ├── UnmanagedPointer.cs │ └── Utils │ │ ├── ClientChangeVectorUtils.cs │ │ ├── CommandLineArgumentEscaper.cs │ │ ├── ConcatStream.cs │ │ ├── CountingConcurrentStack.cs │ │ ├── CurrentProcessorIdHelper.cs │ │ ├── DecimalHelper.cs │ │ ├── DevelopmentHelper.cs │ │ ├── DisposeLock.cs │ │ ├── DynamicNativeLibraryResolver.cs │ │ ├── FifoSemaphore.cs │ │ ├── IncorrectDllException.cs │ │ ├── LazyWithExceptionRetry.cs │ │ ├── MemoryUtils.cs │ │ ├── NativeMemory.cs │ │ ├── NativeMemoryCleaner.cs │ │ ├── PooledItem.cs │ │ ├── ProcessorInfo.cs │ │ ├── ReadWriteCompressedStream.cs │ │ ├── ReferenceEqualityComparer.cs │ │ ├── SafeFileStream.cs │ │ ├── Sizes.cs │ │ ├── StackHeader.cs │ │ ├── StackNode.cs │ │ ├── ThreadLocalCleanup.cs │ │ ├── ThreadingHelper.cs │ │ ├── TimeoutManager.cs │ │ ├── TypeCache.cs │ │ ├── TypeUtils.cs │ │ ├── WhoIsLocking.cs │ │ ├── ZstdLib.cs │ │ └── ZstdStream.cs └── Voron │ ├── Constants.cs │ ├── Data │ ├── BTrees │ │ ├── IPrepareForCommit.cs │ │ ├── ParentPageAction.cs │ │ ├── RecentlyFoundTreePages.cs │ │ ├── Tree.Compressed.cs │ │ ├── Tree.Extensions.cs │ │ ├── Tree.MultiTree.cs │ │ ├── Tree.Stream.cs │ │ ├── Tree.cs │ │ ├── TreeCursor.cs │ │ ├── TreeCursorHandler.cs │ │ ├── TreeFlags.cs │ │ ├── TreeIterator.cs │ │ ├── TreeMutableState.cs │ │ ├── TreeNodeFlags.cs │ │ ├── TreeNodeHeader.cs │ │ ├── TreePage.cs │ │ ├── TreePageFlags.cs │ │ ├── TreePageHeader.cs │ │ ├── TreePageIterator.cs │ │ ├── TreePageSplitter.cs │ │ ├── TreeRebalancer.cs │ │ ├── TreeRootHeader.cs │ │ └── TreeSizeOf.cs │ ├── CompactTrees │ │ ├── CompactKey.cs │ │ ├── CompactKeyCacheScope.cs │ │ ├── CompactTree.Debug.cs │ │ ├── CompactTree.FuzzyIterator.cs │ │ ├── CompactTree.Iterator.cs │ │ ├── CompactTree.cs │ │ ├── PersistentDictionary.Generated.cs │ │ ├── PersistentDictionary.cs │ │ ├── PersistentDictionaryLocator.cs │ │ └── dictionary.bin │ ├── Compression │ │ ├── CompressedNodesHeader.cs │ │ ├── CompressionResult.cs │ │ ├── DecompressedLeafPage.cs │ │ ├── DecompressedPagesCache.cs │ │ ├── DecompressedReadResult.cs │ │ ├── DecompressionBuffersPool.cs │ │ ├── DecompressionUsage.cs │ │ └── LeafPageCompressor.cs │ ├── Containers │ │ ├── Container.cs │ │ ├── ContainerPageHeader.cs │ │ └── ContainerState.cs │ ├── EmptyIterator.cs │ ├── Fixed │ │ ├── FixedSizeIterators.cs │ │ ├── FixedSizeTree.cs │ │ ├── FixedSizeTreeEntry.cs │ │ ├── FixedSizeTreeHeader.cs │ │ ├── FixedSizeTreePage.cs │ │ ├── FixedSizeTreePageFlags.cs │ │ └── FixedSizeTreePageHeader.cs │ ├── IIterator.cs │ ├── Lookups │ │ ├── DoubleLookupKey.cs │ │ ├── ILookupKey.cs │ │ ├── Int64LookupKey.cs │ │ ├── Lookup.Iterator.cs │ │ ├── Lookup.cs │ │ ├── LookupPageFlags.cs │ │ ├── LookupPageHeader.cs │ │ └── LookupState.cs │ ├── PostingLists │ │ ├── PostingList.cs │ │ ├── PostingListBranchPage.cs │ │ ├── PostingListBranchPageHeader.cs │ │ ├── PostingListCursorState.cs │ │ ├── PostingListLeafPage.cs │ │ ├── PostingListLeafPageHeader.cs │ │ ├── PostingListPageFlags.cs │ │ └── PostingListState.cs │ ├── RawData │ │ ├── ActiveRawDataSmallSection.cs │ │ ├── DataMovedDelegate.cs │ │ ├── RawDataOverflowPageHeader.cs │ │ ├── RawDataPageFlags.cs │ │ ├── RawDataSection.cs │ │ ├── RawDataSmallPageHeader.cs │ │ └── RawDataSmallSectionPageHeader.cs │ ├── RootHeader.cs │ ├── RootObjectType.cs │ ├── Tables │ │ ├── CompressionDictionaryInfo.cs │ │ ├── IndexEntryKeyGenerator.cs │ │ ├── NewPageAllocator.cs │ │ ├── Table.cs │ │ ├── TableReport.cs │ │ ├── TableSchema.IndexDefinitions.cs │ │ ├── TableSchema.cs │ │ ├── TableSchemaStats.cs │ │ ├── TableSchemaStatsReference.cs │ │ ├── TableValueBuilder.cs │ │ ├── TableValueCompressor.cs │ │ └── TableValueReader.cs │ └── VoronStream.cs │ ├── DataIntegrityErrorEventArgs.cs │ ├── Debugging │ ├── CommitStats.cs │ ├── DebugStuff.cs │ ├── DetailedStorageReport.cs │ ├── EnvironmentStats.cs │ ├── InMemoryStorageState.cs │ └── StorageReportGenerator.cs │ ├── Exceptions │ ├── CatastrophicFailureNotification.cs │ ├── IncreasingDataFileInCopyOnWriteModeException.cs │ ├── InvalidFixedSizeTree.cs │ ├── InvalidJournalException.cs │ ├── InvalidJournalFlushRequestException.cs │ ├── PageCompressedException.cs │ ├── QuotaException.cs │ ├── SchemaErrorException.cs │ ├── VoronConcurrencyErrorException.cs │ ├── VoronErrorException.cs │ └── VoronUnrecoverableErrorException.cs │ ├── GlobalFlushingBehavior.cs │ ├── GlobalPrefetchingBehavior.cs │ ├── Impl │ ├── Backup │ │ ├── BackupMethods.cs │ │ ├── BackupZipArchive.cs │ │ ├── BackupZipArchiveEntry.cs │ │ ├── FullBackup.cs │ │ ├── IncrementalBackup.cs │ │ ├── IncrementalBackupInfo.cs │ │ └── StreamExtensions.cs │ ├── Compaction │ │ └── StorageCompaction.cs │ ├── EncryptionBuffersPool.cs │ ├── Extensions │ │ └── ConcurrentQueueExtensions.cs │ ├── FileHeaders │ │ ├── FileHeader.cs │ │ └── HeaderAccessor.cs │ ├── FreeSpace │ │ ├── FreeSpaceHandling.cs │ │ ├── FreeSpaceHandlingDisabler.cs │ │ ├── FreeSpaceRecursiveCallGuard.cs │ │ ├── IFreeSpaceHandling.cs │ │ └── StreamBitArray.cs │ ├── IPagerLevelTransactionState.cs │ ├── Journal │ │ ├── IJournalCompressionBufferCryptoHandler.cs │ │ ├── IJournalWriter.cs │ │ ├── JournalFile.cs │ │ ├── JournalInfo.cs │ │ ├── JournalReader.cs │ │ ├── JournalSnapshot.cs │ │ ├── JournalWriter.cs │ │ ├── RecoveryOverflowDetector.cs │ │ ├── TransactionHeader.cs │ │ ├── TransactionMarker.cs │ │ └── WriteAheadJournal.cs │ ├── LowLevelTransaction.cs │ ├── PagePosition.cs │ ├── PagerState.cs │ ├── Paging │ │ ├── AbstractPager.cs │ │ ├── AbstractPagerExtensions.cs │ │ ├── CryptoPager.cs │ │ ├── RvnMemoryMapPager.cs │ │ ├── TempPagerTransaction.cs │ │ └── Windows32BitsMemoryMapPager.cs │ ├── Scratch │ │ ├── IScratchSpaceMonitor.cs │ │ ├── PageFromScratchBuffer.cs │ │ ├── ScratchBufferFile.cs │ │ ├── ScratchBufferPool.cs │ │ ├── ScratchBufferPoolInfo.cs │ │ └── ScratchSpaceUsageMonitor.cs │ ├── SliceSmallSet.cs │ ├── StorageEnvironmentState.cs │ ├── Transaction.cs │ └── TreeAndSliceComparer.cs │ ├── NonDurabilitySupportEventArgs.cs │ ├── NonDurableFileSystemException.cs │ ├── Page.cs │ ├── PageFlags.cs │ ├── PageHeader.cs │ ├── PageHeaderUnion.cs │ ├── PageLocator.cs │ ├── PathInfo.cs │ ├── Platform │ ├── Posix │ │ ├── Posix32BitsMemoryMapPager.cs │ │ ├── PosixAbstractPager.cs │ │ ├── PosixHelper.cs │ │ └── PosixTempMemoryMapPager.cs │ └── Win32 │ │ ├── Win32Helper.cs │ │ ├── Win32NativeFileMethods.cs │ │ └── WindowsMemoryMapPager.cs │ ├── Properties │ ├── AssemblyInfo.Linux.cs │ └── AssemblyInfo.Windows.cs │ ├── ReadResult.cs │ ├── RecoverableFailureEventArgs.cs │ ├── RecoveryErrorEventArgs.cs │ ├── Schema │ ├── IVoronSchemaUpdate.cs │ ├── SchemaUpgradeTransactions.cs │ ├── Updates │ │ └── From22.cs │ └── VoronSchemaUpdater.cs │ ├── Slice.Extensions.cs │ ├── Slice.cs │ ├── SliceComparer.cs │ ├── SliceOptions.cs │ ├── StorageEnvironment.cs │ ├── StorageEnvironmentOptions.cs │ ├── TransactionFlags.cs │ ├── TransactionPersistenceModeFlags.cs │ ├── TransactionPersistentContext.cs │ ├── Util │ ├── ActiveTransactions.cs │ ├── ContextBoundNativeList.cs │ ├── Conversion │ │ ├── BigEndianBitConverter.cs │ │ ├── EndianBitConverter.cs │ │ ├── Endianness.cs │ │ ├── LittleEndianBitConverter.cs │ │ └── readme.txt │ ├── DataCopier.cs │ ├── DisposableAction.cs │ ├── EndOfDiskSpaceEvent.cs │ ├── ImmutableAppendOnlyList.cs │ ├── NativeList.cs │ ├── PFor │ │ ├── BitPacking.cs │ │ ├── FastPForBufferedReader.cs │ │ ├── FastPForDecoder.cs │ │ ├── FastPForEncoder.cs │ │ ├── ISimdTransform.cs │ │ ├── MaskEntries.cs │ │ ├── NoTransform.cs │ │ ├── PForHeader.cs │ │ ├── ScalarBitPacking.cs │ │ ├── SimdBitPacking.TSimdDiff.cs │ │ ├── SimdPacking.Generated.cs │ │ └── simdfor.py │ ├── PageTable.cs │ ├── PtrSize.cs │ ├── Settings │ │ ├── PathSettingBase.cs │ │ └── VoronPathSetting.cs │ ├── TableValuereaderUtils.cs │ ├── ThreadHoppingReaderWriterLock.cs │ └── Utils.cs │ ├── ValueReader.cs │ └── Voron.csproj ├── test ├── BenchmarkTests │ ├── BenchmarkTestBase.cs │ ├── BenchmarkTests.csproj │ ├── Indexing │ │ └── Index.cs │ ├── Init.cs │ ├── Patching │ │ └── Patch.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Storing │ │ ├── BulkInsert.cs │ │ └── Session.cs │ ├── Utils │ │ ├── EntityFactory.cs │ │ └── TestsOrderer.cs │ └── xunit.runner.json ├── Directory.Build.props ├── EmbeddedTests │ ├── BasicTests.cs │ ├── Data │ │ ├── MyCustomAnalyzers.dll │ │ └── testing.ravendbdump │ ├── EmbeddedTestBase.cs │ ├── EmbeddedTests.csproj │ ├── Issues │ │ ├── RavenDB_15885.cs │ │ └── RavenDB_19205.cs │ ├── Platform │ │ └── PosixHelper.cs │ ├── RuntimeFrameworkVersionMatcherTests.cs │ ├── Server │ │ └── Integrations │ │ │ └── PostgreSQL │ │ │ ├── PostgreSqlIntegrationTestBase.cs │ │ │ ├── RavenDB-19470.cs │ │ │ ├── RavenDB-19583.cs │ │ │ ├── RavenDB-19636.cs │ │ │ ├── RavenDB-21786.cs │ │ │ ├── RavenDB_16880.cs │ │ │ ├── RavenDB_17433.cs │ │ │ ├── RavenDB_17478.cs │ │ │ ├── RavenDB_17904.cs │ │ │ ├── RavenDB_18716.cs │ │ │ └── RavenDB_19256.cs │ ├── SmugglerTests.cs │ └── TestDriver │ │ └── TestDriverExampleTest.cs ├── FastTests │ ├── .gitignore │ ├── Blittable │ │ ├── BlittableJsonEqualityTests.cs │ │ ├── BlittableJsonWriterTests │ │ │ ├── ArenaMemoryAllocatorTests.cs │ │ │ ├── BlittableFormatTests.cs │ │ │ ├── BlittableJsonTestBase.cs │ │ │ ├── BlittableMetadataModifierTest.cs │ │ │ ├── ConcurrentAccessTests.cs │ │ │ ├── FunctionalityTests.cs │ │ │ ├── Jsons │ │ │ │ ├── arrays-ands-objects.json │ │ │ │ ├── blog_post.json │ │ │ │ ├── comments.json │ │ │ │ ├── empty.json │ │ │ │ ├── escape-str.json │ │ │ │ ├── floats.json │ │ │ │ ├── geo.json │ │ │ │ ├── mix.json │ │ │ │ ├── monsters.json │ │ │ │ ├── negatives.json │ │ │ │ ├── nested-object.json │ │ │ │ ├── numbers.json │ │ │ │ ├── poo.json │ │ │ │ ├── project-sample.json │ │ │ │ ├── simple-floats.json │ │ │ │ ├── unicode.json │ │ │ │ └── windings.json │ │ │ ├── ManualBuilderTests.cs │ │ │ └── UnmanageJsonReaderTests.cs │ │ ├── BlittableParsing.cs │ │ ├── BlittableValidationTest.cs │ │ ├── MemoryPoolTests.cs │ │ ├── MutatingJsonTests.cs │ │ ├── ObjectJsonParsingTests.cs │ │ ├── PartialParsingBugs.cs │ │ ├── PeepingTomTest.cs │ │ ├── SerializationDeserializationValidation.cs │ │ ├── SmallStringCompressionTests.cs │ │ ├── StringExtensions.cs │ │ └── UnmanagedStreamTests.cs │ ├── Client │ │ ├── AsyncHelperTest.cs │ │ ├── BatchCommandWithNoReplyFlagTest.cs │ │ ├── Blittable │ │ │ └── Serialization.cs │ │ ├── BulkInsert │ │ │ └── BulkInserts.cs │ │ ├── BulkInserts.cs │ │ ├── CRUD.cs │ │ ├── CanParseToObjectFromBlittable.cs │ │ ├── Changes │ │ │ ├── BasicChangesDocumentsTests.cs │ │ │ └── BasicChangesIndexesTests.cs │ │ ├── ConditionalLoadTest.cs │ │ ├── DatabaseChangesTests.cs │ │ ├── Delete.cs │ │ ├── Documents │ │ │ ├── BasicDocuments.cs │ │ │ ├── FHIR.cs │ │ │ ├── Load.cs │ │ │ └── Patch.cs │ │ ├── Events.cs │ │ ├── Exists.cs │ │ ├── ExistsAsync.cs │ │ ├── FirstClassPatch.cs │ │ ├── HiLo.cs │ │ ├── HttpCacheTests.cs │ │ ├── Includes.cs │ │ ├── IncludesUtilTests.cs │ │ ├── Indexing │ │ │ ├── Counters │ │ │ │ └── BasicCountersIndexes.cs │ │ │ ├── DebugIndexing.cs │ │ │ ├── IndexExtensionFromClient.cs │ │ │ ├── IndexesFromClient.cs │ │ │ ├── JavaScriptIndexTests.cs │ │ │ ├── StaticIndexesFromClient.cs │ │ │ └── TimeSeries │ │ │ │ └── BasicTimeSeriesIndexes.cs │ │ ├── Issue_6069.cs │ │ ├── Lazy │ │ │ └── MultiGetOperations.cs │ │ ├── Load.cs │ │ ├── LoadAsync.cs │ │ ├── LoadIntoStream.cs │ │ ├── LoadIntoStreamAsync.cs │ │ ├── NextAndSeedIdentities.cs │ │ ├── OnGoingTask.cs │ │ ├── Operations │ │ │ └── BasicChangesOperationsTests.cs │ │ ├── Queries │ │ │ ├── AnalyzersThatRemovesStarShouldNotCutTheLastChar.cs │ │ │ ├── Counters │ │ │ │ └── BasicCountersQueries.cs │ │ │ ├── DictionaryQueriesWithLinq.cs │ │ │ ├── InQuery.cs │ │ │ ├── QueryTests.cs │ │ │ ├── RangeQuery.cs │ │ │ ├── RegexQueryTests.cs │ │ │ └── TimeSeries │ │ │ │ └── BasicTimeSeriesQueries.cs │ │ ├── QueriesWithVariables.cs │ │ ├── Query.cs │ │ ├── QueryAsync.cs │ │ ├── QueryDateTime.cs │ │ ├── QueryIntoStream.cs │ │ ├── RavenCommandTest.cs │ │ ├── RavenQueryTests.cs │ │ ├── RequestExecutorTests.cs │ │ ├── SerializationTweaking.cs │ │ ├── Store.cs │ │ ├── Subscriptions │ │ │ ├── SubscriptionTestBase.cs │ │ │ └── SubscriptionsBasic.cs │ │ ├── TrackEntity.cs │ │ ├── Update.cs │ │ ├── WhatChanged.cs │ │ └── WhatChangedFor.cs │ ├── Corax │ │ ├── AccelerationTests.cs │ │ ├── AnalyzersIntegration.cs │ │ ├── BoostingQuery.cs │ │ ├── Bugs │ │ │ ├── 3-2015-10.txt.gz │ │ │ ├── Corax.PostingList.AddsBiggerThanInt.txt │ │ │ ├── Corax.PostingList.RemBiggerThanInt.txt │ │ │ ├── Corax.Set.Adds.txt │ │ │ ├── Corax.Set.Removals.txt │ │ │ ├── CoraxSorting.cs │ │ │ ├── FacetIndexingRepro.cs │ │ │ ├── IndexCorruptionOnSmallBatches.cs │ │ │ ├── IndexEntryReaderBigDoc.cs │ │ │ ├── IntCompressionTests.cs │ │ │ ├── OptimizedUpdatesOnIndexes.cs │ │ │ ├── PostListSplit.txt │ │ │ ├── PostingListAddRemoval.cs │ │ │ ├── PostingListSize.cs │ │ │ ├── RavenDB-19283.cs │ │ │ ├── RavenDB-19442.cs │ │ │ ├── RavenDB-21052.cs │ │ │ ├── RavenDB-21180.cs │ │ │ ├── RavenDB-21223.cs │ │ │ ├── RavenDB-21272.cs │ │ │ ├── RavenDB-21321.cs │ │ │ ├── RavenDB-21471.cs │ │ │ ├── RavenDB-22285.cs │ │ │ ├── RavenDB_19646.cs │ │ │ ├── RavenDB_21087.cs │ │ │ ├── RavenDB_23245.cs │ │ │ ├── SimdCompressionEncodingTests.cs │ │ │ ├── Terms-2.txt.gz │ │ │ ├── access_violation.json.gz │ │ │ ├── index-corrupt-log.bin │ │ │ ├── index-log.bin │ │ │ └── page-base64.txt │ │ ├── CompactTreeTests.cs │ │ ├── CompoundFieldsOnIndex.cs │ │ ├── CompoundSorting.cs │ │ ├── CoraxCrud.cs │ │ ├── CoraxJavaScriptProjectionIntegration.cs │ │ ├── CoraxPhraseQueries.cs │ │ ├── CoraxProjections.cs │ │ ├── CoraxQueries.cs │ │ ├── DeleteTest.cs │ │ ├── DynamicFieldsIntegration.cs │ │ ├── DynamicFieldsTests.cs │ │ ├── EntriesModificationsTests.cs │ │ ├── IndexSearcher.cs │ │ ├── LookupBulkTests.cs │ │ ├── MapReduceProjection.cs │ │ ├── OrderBySorting.cs │ │ ├── Pipeline │ │ │ └── ParsingTests.cs │ │ ├── Primitives.cs │ │ ├── QueryPlanTests.cs │ │ ├── Ranking │ │ │ ├── QuantizationTest.cs │ │ │ └── RankingFunctionTests.cs │ │ ├── RavenDB_22561.cs │ │ ├── RavenDB_22679.cs │ │ ├── RavenIntegration.cs │ │ ├── RawCoraxFlag.cs │ │ ├── SimplePipeline.cs │ │ ├── SortingComparers.cs │ │ ├── SpatialBoostingInCorax.cs │ │ ├── SpatialTests.cs │ │ ├── StreamingOptimization_DataTests.cs │ │ ├── StreamingOptimization_QueryBuilder.cs │ │ ├── Suggestions.cs │ │ └── UpdateSameEntryTwiceInOneBatch.cs │ ├── Data │ │ └── RavenDB_17185 │ │ │ └── memInfo.txt │ ├── FastTests.csproj │ ├── Issues │ │ ├── HRINT_2184.cs │ │ ├── RavenBooleanQueryTests.cs │ │ ├── RavenDB-10720.cs │ │ ├── RavenDB-10931.cs │ │ ├── RavenDB-11424.cs │ │ ├── RavenDB-11781.cs │ │ ├── RavenDB-11791.cs │ │ ├── RavenDB-12126.cs │ │ ├── RavenDB-12430.cs │ │ ├── RavenDB-12568.cs │ │ ├── RavenDB-12926.cs │ │ ├── RavenDB-12946.cs │ │ ├── RavenDB-13058.cs │ │ ├── RavenDB-13499.ravendbdump │ │ ├── RavenDB-14525.cs │ │ ├── RavenDB-14576.cs │ │ ├── RavenDB-15531.cs │ │ ├── RavenDB-15706.cs │ │ ├── RavenDB-16469.cs │ │ ├── RavenDB-17636.cs │ │ ├── RavenDB-18546.cs │ │ ├── RavenDB-20292.cs │ │ ├── RavenDB-20505.cs │ │ ├── RavenDB-22084.cs │ │ ├── RavenDB-5178.cs │ │ ├── RavenDB-5610.cs │ │ ├── RavenDB-6141.cs │ │ ├── RavenDB-6250.cs │ │ ├── RavenDB-6341.cs │ │ ├── RavenDB-6451.cs │ │ ├── RavenDB-6960.cs │ │ ├── RavenDB-7260.cs │ │ ├── RavenDB-7329.cs │ │ ├── RavenDB-7493.cs │ │ ├── RavenDB-7636.cs │ │ ├── RavenDB-7886.cs │ │ ├── RavenDB-8097.cs │ │ ├── RavenDB_10520.cs │ │ ├── RavenDB_10583.cs │ │ ├── RavenDB_10644.cs │ │ ├── RavenDB_10659.cs │ │ ├── RavenDB_10732.cs │ │ ├── RavenDB_10734.cs │ │ ├── RavenDB_10765.cs │ │ ├── RavenDB_10837.cs │ │ ├── RavenDB_12235.cs │ │ ├── RavenDB_12582.cs │ │ ├── RavenDB_12623.cs │ │ ├── RavenDB_12731.cs │ │ ├── RavenDB_13338.cs │ │ ├── RavenDB_13869.cs │ │ ├── RavenDB_13891.cs │ │ ├── RavenDB_13906.cs │ │ ├── RavenDB_15023.cs │ │ ├── RavenDB_15384.cs │ │ ├── RavenDB_16590.cs │ │ ├── RavenDB_16942.cs │ │ ├── RavenDB_17185.cs │ │ ├── RavenDB_18157.cs │ │ ├── RavenDB_18334.cs │ │ ├── RavenDB_19626.cs │ │ ├── RavenDB_19746.cs │ │ ├── RavenDB_19938.cs │ │ ├── RavenDB_20092.cs │ │ ├── RavenDB_20542.cs │ │ ├── RavenDB_20566.cs │ │ ├── RavenDB_21412.cs │ │ ├── RavenDB_21550.cs │ │ ├── RavenDB_21557.cs │ │ ├── RavenDB_21783.cs │ │ ├── RavenDB_22436.cs │ │ ├── RavenDB_22551.cs │ │ ├── RavenDB_5042.cs │ │ ├── RavenDB_7463.cs │ │ ├── RavenDB_7654.cs │ │ ├── RavenDB_7953.cs │ │ ├── RavenDB_8439.cs │ │ ├── RavenDB_8548.cs │ │ ├── RavenDB_8680.cs │ │ ├── RavenDB_8700.cs │ │ ├── RavenDB_9348.cs │ │ ├── RavenDB_9379.cs │ │ ├── RavenDB_9875.cs │ │ └── RavenDB_9900.cs │ ├── RavenDB_14520.cs │ ├── Server │ │ ├── Basic │ │ │ ├── ChangeVectorConflictStatusTests.cs │ │ │ ├── Crud.cs │ │ │ ├── DatabaseRecordDebugPackageInclusionTest.cs │ │ │ ├── IdleOperations.cs │ │ │ ├── MaxSecondsForTaskToWaitForDatabaseToLoad.cs │ │ │ ├── MultiGetOperations.cs │ │ │ ├── RavenDB5743.cs │ │ │ └── SampleData.cs │ │ ├── Cluster │ │ │ └── VersionValidation.cs │ │ ├── DatabaseLandlordBugs.cs │ │ ├── DebugMemoryTests.cs │ │ ├── Documents │ │ │ ├── Collections.cs │ │ │ ├── DocCompression.cs │ │ │ ├── DocumentIdWorkerTests.cs │ │ │ ├── DocumentsCrud.cs │ │ │ ├── Indexing │ │ │ │ ├── Auto │ │ │ │ │ ├── BasicAutoMapIndexing.cs │ │ │ │ │ └── BasicAutoMapReduceIndexing.cs │ │ │ │ ├── BasicAnalyzers.cs │ │ │ │ ├── BloomFilterTests.cs │ │ │ │ ├── Corax │ │ │ │ │ └── LuceneAnalyzerAdapter.cs │ │ │ │ ├── FullTextSearchOnAutoIndex.cs │ │ │ │ ├── Lucene │ │ │ │ │ ├── LazyStringValueReaderTests.cs │ │ │ │ │ ├── LuceneDocumentConverterTests.cs │ │ │ │ │ └── UsingUnicode.cs │ │ │ │ ├── MapReduce │ │ │ │ │ └── ReduceKeyProcessorTests.cs │ │ │ │ ├── RavenLinqOptimizerTests.cs │ │ │ │ ├── Static │ │ │ │ │ ├── BasicStaticMapIndexing.cs │ │ │ │ │ ├── BasicStaticMapReduceIndexing.cs │ │ │ │ │ ├── DynamicBlittableJsonTests.cs │ │ │ │ │ ├── JavaScriptIndexTests.cs │ │ │ │ │ └── RavenDB_11687.cs │ │ │ │ └── TranslatingLinqQueriesToIndexes.cs │ │ │ ├── Operations │ │ │ │ └── BasicOperationsTests.cs │ │ │ ├── PeriodicBackup │ │ │ │ └── PeriodicBackupTests.cs │ │ │ ├── Queries │ │ │ │ ├── Dynamic │ │ │ │ │ ├── Map │ │ │ │ │ │ ├── BasicDynamicMapQueries.cs │ │ │ │ │ │ ├── CreationOfAutoMapIndexDefinition.cs │ │ │ │ │ │ └── IncludeOrLoadShouldReturnAllDocsEtag.cs │ │ │ │ │ └── MapReduce │ │ │ │ │ │ ├── BasicDynamicMapReduceQueries.cs │ │ │ │ │ │ ├── CreationOfAutoMapReduceIndexDefinition.cs │ │ │ │ │ │ └── GroupByMultipleFields.cs │ │ │ │ ├── HighlightingQuery.cs │ │ │ │ ├── NotModifiedQueryResults.cs │ │ │ │ ├── Parser │ │ │ │ │ ├── ComplexQueries.cs │ │ │ │ │ ├── ParserTests.cs │ │ │ │ │ └── ScannerTests.cs │ │ │ │ ├── QueryingStopwordWithPrefixShouldWork.cs │ │ │ │ ├── RavenDB_22700.cs │ │ │ │ ├── RavenDB_6065.cs │ │ │ │ └── WaitingForNonStaleResults.cs │ │ │ ├── Revisions │ │ │ │ └── RevisionsTests.cs │ │ │ ├── TimeSeries │ │ │ │ ├── TimeSeriesAppendTests.cs │ │ │ │ └── TimeSeriesRangeTests.cs │ │ │ └── Tombstones │ │ │ │ └── BasicTombstones.cs │ │ ├── Json │ │ │ └── BlittableJsonTraverserTests.cs │ │ ├── Replication │ │ │ └── ReplicationBasicTests.cs │ │ ├── Routing │ │ │ └── TrieTests.cs │ │ ├── ServerStore.cs │ │ ├── ThreadUsageTests.cs │ │ └── TrafficWatchConfigurationTests.cs │ ├── Sharding │ │ ├── BasicSharding.cs │ │ ├── Client │ │ │ └── Session │ │ │ │ └── BasicShardedSessionTests.cs │ │ ├── Issues │ │ │ └── RavenDB_18408.cs │ │ ├── Queries │ │ │ ├── BasicShardedMapReduceQueryTests.cs │ │ │ └── BasicShardedQueryTests.cs │ │ ├── RavenDB-17760.cs │ │ └── Subscriptions │ │ │ └── ShardedSubscriptionBasicTests.cs │ ├── Sparrow │ │ ├── AdvMemoryTests.cs │ │ ├── BinaryTreeTests.cs │ │ ├── Bits.cs │ │ ├── ByteStringTests.cs │ │ ├── ChangeThreadPriorityTest.cs │ │ ├── CompressionTests.cs │ │ ├── DiffPagesTests.cs │ │ ├── Encoder3GramTests.cs │ │ ├── EncryptionTests.cs │ │ ├── FileSystemUtilsTest.cs │ │ ├── Hashing.cs │ │ ├── IntegerEncoding.cs │ │ ├── IoMetric.cs │ │ ├── LZ4.cs │ │ ├── Memory.cs │ │ ├── PtrBitVector.cs │ │ ├── SmallSet.cs │ │ ├── Sorting.cs │ │ └── UnmanagedWriteBufferTests.cs │ ├── Utils │ │ ├── ChunkedMmapStreamTests.cs │ │ ├── DataArchivalHelper.cs │ │ ├── ExpirationHelper.cs │ │ ├── IncludeUtilTests.cs │ │ ├── LimitedStreamTests.cs │ │ ├── LinuxTestUtils.cs │ │ ├── OperationIdEncoderTests.cs │ │ ├── RefreshHelper.cs │ │ ├── RevisionsHelper.cs │ │ └── TimeParsing.cs │ ├── Voron │ │ ├── Backups │ │ │ ├── BackupToOneZipFile.cs │ │ │ ├── Full.cs │ │ │ ├── IncrementalBackupTestUtils.cs │ │ │ └── RavenDB_3115.cs │ │ ├── Bugs │ │ │ ├── GlobalFixedSizeTreeInMulitpleTables.cs │ │ │ ├── RavenDB_16464.cs │ │ │ ├── RavenDB_8036.cs │ │ │ ├── RavenDB_8837.cs │ │ │ ├── RavenDB_9153.cs │ │ │ └── RavenDB_9225.cs │ │ ├── ClonedReadTransactions.cs │ │ ├── CompactTreeTests.cs │ │ ├── CompactTrees │ │ │ ├── CompactTreeReplayTest.cs │ │ │ ├── RavenDB-19703.cs │ │ │ ├── RavenDB-19703.replay │ │ │ ├── RavenDB-19937.cs │ │ │ ├── RavenDB-19937.replay │ │ │ ├── RavenDB-19956.replay │ │ │ └── RavenDB-21521.cs │ │ ├── Compaction │ │ │ └── StorageCompactionTests.cs │ │ ├── Containers │ │ │ └── ContainerTests.cs │ │ ├── EncryptionBufferPool.cs │ │ ├── FixedSize │ │ │ ├── FixedSizeBugs.cs │ │ │ ├── InlineDataWithRandomSeed.cs │ │ │ ├── LargeFixedSizeTreeBugs.cs │ │ │ ├── RavenDB_6073.cs │ │ │ ├── RavenDB_6350.cs │ │ │ └── SimpleFixedSizeTrees.cs │ │ ├── Journal │ │ │ ├── BasicActions.cs │ │ │ ├── Mvcc.cs │ │ │ └── UncommittedTransactions.cs │ │ ├── LeafsCompression │ │ │ └── RavenDB_5384_DecompressionBuffersPoolTests.cs │ │ ├── MultiTreeSize.cs │ │ ├── MultiValueTree.cs │ │ ├── Optimizations │ │ │ ├── EarlyLockRelease.cs │ │ │ └── Writes.cs │ │ ├── PostingLists │ │ │ ├── PostingListLeafPageTests.cs │ │ │ └── PostingListTests.cs │ │ ├── RavenDB-9847.cs │ │ ├── RawData │ │ │ └── SmallDataSection.cs │ │ ├── ReaderWriterLockTests.cs │ │ ├── ScratchBuffer │ │ │ ├── ActivelyUsedBytesTracking.cs │ │ │ └── ScratchCanForceToFlushOldPages.cs │ │ ├── Slices.cs │ │ ├── StorageTest.cs │ │ ├── StreamBitArrayTests.cs │ │ ├── Tables │ │ │ ├── Allocations.cs │ │ │ ├── BasicUsage.cs │ │ │ ├── CompositeIndex.cs │ │ │ ├── Compression.cs │ │ │ ├── RavenDB_17760.cs │ │ │ ├── RavenDB_22226.cs │ │ │ ├── SecondayIndex.cs │ │ │ ├── Serialization.cs │ │ │ ├── TableIndexes.cs │ │ │ ├── TableStorageTest.cs │ │ │ ├── TableValue.cs │ │ │ └── Validate.cs │ │ ├── Trees │ │ │ ├── Basic.cs │ │ │ ├── CanDefrag.cs │ │ │ ├── CanIterateBackward.cs │ │ │ ├── Deletes.cs │ │ │ ├── FreeSpaceTest.cs │ │ │ ├── ItemsCount.cs │ │ │ ├── Iteration.cs │ │ │ ├── MultipleTrees.cs │ │ │ ├── Rebalance.cs │ │ │ ├── TreeRenaming.cs │ │ │ ├── TreeStateTests.cs │ │ │ └── Updates.cs │ │ ├── Util │ │ │ ├── GreaterThan42B-Truncated.txt │ │ │ ├── GreaterThan42B.txt │ │ │ ├── ImmutableAppendOnlyTests.cs │ │ │ ├── PForEncoderTests.cs │ │ │ ├── SmallBufferMisleading2.txt │ │ │ ├── SmallBufferSizeMisleading.txt │ │ │ ├── StreamExtensions.cs │ │ │ └── WriteTooMuchToBuffer.txt │ │ └── ValidHeaders.cs │ └── longest-tests.ps1 ├── InterversionTests │ ├── BasicTests.cs │ ├── EtlTests.cs │ ├── InterversionTests.csproj │ ├── MixedClusterTestBase.cs │ ├── MixedClusterTests.cs │ ├── RavenDB-17518.cs │ ├── RavenDB-17556.cs │ ├── RavenDB-20628-backward-compatibility.cs │ ├── RavenDB-22634.cs │ ├── ReplicationTests.cs │ └── SmugglerTests.cs ├── LicenseTests │ ├── LicenseLimitsTests.cs │ ├── LicenseOptionsTests.cs │ └── LicenseTests.csproj ├── RachisTests │ ├── AddNodeToClusterTests.cs │ ├── BasicCluster.cs │ ├── BasicTests.cs │ ├── Cluster.cs │ ├── CommandsTests.cs │ ├── DatabaseCluster │ │ ├── AtomicClusterReadWriteTests.cs │ │ ├── ClusterDatabaseMaintenance.cs │ │ ├── EtlFailover.cs │ │ ├── OngoingTasks.cs │ │ ├── RemoveNodeFromCluster.cs │ │ └── ReplicationTests.cs │ ├── DisableNodeOnClusterTest.cs │ ├── ElectionTests.cs │ ├── EmergencyOperations.cs │ ├── LogDivergenceTests.cs │ ├── RachisTests.csproj │ ├── RavenDB-6602.cs │ ├── RavenDB_14348.cs │ ├── RavenDB_18013.cs │ ├── SubscriptionFailoverWIthWaitingChains.cs │ ├── SubscriptionsFailover.cs │ └── TopologyChangesTests.cs ├── SlowTests │ ├── Authentication │ │ ├── AuthenticationBasicTests.cs │ │ ├── AuthenticationChangesTests.cs │ │ ├── AuthenticationClusterTests.cs │ │ ├── AuthenticationDebugPackageInfoTests.cs │ │ ├── AuthenticationEncryptionTests.cs │ │ ├── AuthenticationLetsEncryptTests.cs │ │ └── SetupCommands.cs │ ├── Blittable │ │ ├── BlittableJsonReaderObjectTest.cs │ │ ├── BlittableJsonWriterTests │ │ │ ├── ManualBuilderTestsSlow.cs │ │ │ └── VariousPropertyAmountsTests.cs │ │ ├── JsonSerializerTests.cs │ │ ├── RavenDB-11243.cs │ │ ├── SerializeAndDeserializeMergedTransactionCommandTests.cs │ │ └── SerializeTestHelper.cs │ ├── Bugs │ │ ├── AccessingHostPropertyOnUri.cs │ │ ├── AccurateCount.cs │ │ ├── AdHocProjections.cs │ │ ├── AfterDeletingTheIndexStopsBeingStale.cs │ │ ├── AggressiveCaching.cs │ │ ├── AnalyzerPerField.cs │ │ ├── Andres.cs │ │ ├── Andrew.cs │ │ ├── AnonymousClasses.cs │ │ ├── ArrayOfMaybeNull.cs │ │ ├── Arrays.cs │ │ ├── Async │ │ │ ├── DynamicGeneratedIds.cs │ │ │ └── Querying.cs │ │ ├── AttachmentsCopyProblemWhileCallingPutInPatch.cs │ │ ├── AutoCreateIndexes.cs │ │ ├── AutoDetectAnalyzersForQuery.cs │ │ ├── AvoidRaceConditionWhenWeLoadTheDataNotPatched.cs │ │ ├── BatchPatching.cs │ │ ├── CS1977.cs │ │ ├── Caching │ │ │ ├── CachingOfDocumentInclude.cs │ │ │ ├── CachingOfDocumentLoad.cs │ │ │ ├── CachingOfPostQueries.cs │ │ │ └── UseCachingInLazyTests.cs │ │ ├── CanAggregateOnDecimal.cs │ │ ├── CanDetectChanges.cs │ │ ├── CanGetScores.cs │ │ ├── CanHandleDocumentRemoval.cs │ │ ├── CanPassTypesProperlyToAggregation.cs │ │ ├── CanPatchADocumentThatContainsBytes.cs │ │ ├── CanProjectIdFromDocumentInQueries.cs │ │ ├── CanReadLuceneProjectedDateTimeOffset.cs │ │ ├── CanSelectFieldsFromIndex.cs │ │ ├── CanStoreAndGetDateTimeOffset.cs │ │ ├── CanUseReduceResultInOutput.cs │ │ ├── CaseSensitiveDeletes.cs │ │ ├── Chripede │ │ │ └── IndexOnList.cs │ │ ├── ComplexDynamicQuery.cs │ │ ├── ComplexIndexes.cs │ │ ├── ComplexQueryOnSameObject.cs │ │ ├── ConflictsWithRemote.cs │ │ ├── CreateIndexesRemotely.cs │ │ ├── CreatingIndexes.cs │ │ ├── CustomDynamicObject.cs │ │ ├── CustomEntityName.cs │ │ ├── CustomizingIndexQuery.cs │ │ ├── DanTurner.cs │ │ ├── DateFilter.cs │ │ ├── DateRanges.cs │ │ ├── DateTimeInLocalTime.cs │ │ ├── DateTimeInLocalTimeRemote.cs │ │ ├── DateTimeOffsets.cs │ │ ├── DecimalPrecision.cs │ │ ├── DefaultOperatorTest.cs │ │ ├── DeletingDynamics.cs │ │ ├── DeserializationAcrossTypes.cs │ │ ├── DictionaryOfDateTime.cs │ │ ├── Distinct.cs │ │ ├── DocumentWithNaN.cs │ │ ├── DoesPreserveDocumentIdCaseWhenPatchingFullCollectionTest.cs │ │ ├── DuplicatedFiledNames.cs │ │ ├── DyanmicId.cs │ │ ├── DynamicQuerySorting.cs │ │ ├── Entities │ │ │ ├── CanSaveUpdateAndRead.cs │ │ │ └── CanSaveUpdateAndRead_Local.cs │ │ ├── EntitiesWithAttributes.cs │ │ ├── EntityWithDate.cs │ │ ├── EntityWithNullableDateTimeOffset.cs │ │ ├── EntityWithStack.cs │ │ ├── EntityWithoutId.cs │ │ ├── EnumsCastToInts.cs │ │ ├── Errors │ │ │ ├── CanIndexOnNull.cs │ │ │ └── QueryIssues.cs │ │ ├── Etag.cs │ │ ├── Facets │ │ │ ├── DateTimeFacets.cs │ │ │ ├── FacetErrors.cs │ │ │ └── FacetsCreationTest.cs │ │ ├── GuidValueInIndexing.cs │ │ ├── Identifiers │ │ │ ├── LongId.cs │ │ │ └── WithBase64Characters.cs │ │ ├── IndexWithTwoProperties.cs │ │ ├── Indexing │ │ │ ├── CanHaveAnIndexNameThatStartsWithDynamic.cs │ │ │ ├── CanHaveEscapedSecialCharactersInDefinition.cs │ │ │ ├── CanIndexAllDocsWhenThereAreMoreDocsThanTheBatchSize.cs │ │ │ ├── CanIndexNestedObjects.cs │ │ │ ├── CanIndexWithCharLiteral.cs │ │ │ ├── CanMultiMapIndexNullableValueTypes.cs │ │ │ ├── CannotCreateIndexWithoutReduce.cs │ │ │ ├── ComplexLinq.cs │ │ │ ├── ComplexUsage.cs │ │ │ ├── CreateIndexesOnRemoteServer.cs │ │ │ ├── DataContracts.cs │ │ │ ├── DynamicFields.cs │ │ │ ├── DynamicQueriesCanSort.cs │ │ │ ├── FilterOnMissingProperty.cs │ │ │ ├── IndexBuilderShouldCastNull.cs │ │ │ ├── IndexingEachFieldInEachDocumentSeparately.cs │ │ │ ├── IndexingOnDictionary.cs │ │ │ ├── InvalidIndexes.cs │ │ │ ├── MissingAnalyzer.cs │ │ │ ├── RemoteIndexingOnDictionary.cs │ │ │ ├── SetIndexPriority.cs │ │ │ ├── ThrowingAnalyzer.cs │ │ │ ├── TransactionIndexByMrn.cs │ │ │ ├── WillRemoveTypesThatNotExistsOnTheServer.cs │ │ │ ├── WiseShrek.cs │ │ │ ├── WithStartWith.cs │ │ │ └── WithStringReverse.cs │ │ ├── Iulian │ │ │ ├── CanReadEntityWithUrlId.cs │ │ │ └── GeneratesCorrectTemporaryIndex.cs │ │ ├── LiveProjections │ │ │ └── LiveProjectionOnProducts.cs │ │ ├── MapRedue │ │ │ ├── Chris.cs │ │ │ ├── LargeKeysInVoron.cs │ │ │ ├── LetInReduceFunction.cs │ │ │ ├── MapReduceIndex.cs │ │ │ ├── MinMax.cs │ │ │ └── TreeWithChildrenCount.cs │ │ ├── Metadata │ │ │ ├── EscapeQuotesLocal.cs │ │ │ ├── EscapeQuotesRemote.cs │ │ │ ├── LastModifiedLocal.cs │ │ │ ├── LastModifiedRemote.cs │ │ │ └── Querying.cs │ │ ├── MultiMap │ │ │ ├── Errors.cs │ │ │ ├── MultiMapCrudeJoin.cs │ │ │ ├── MultiMapReduce.cs │ │ │ ├── MultiMapWithCustomProperties.cs │ │ │ ├── MultiMapWithNullableEnum.cs │ │ │ ├── MultiMapWithNullableEnumAndCoalescingOperator.cs │ │ │ ├── MultiMapWithoutReduce.cs │ │ │ └── SimpleMultiMap.cs │ │ ├── MultiMapSearch │ │ │ └── MultiMapWildCardSearch.cs │ │ ├── MultiTenancy │ │ │ ├── Basic.cs │ │ │ ├── CreatingIndexes.cs │ │ │ └── NoCaseSensitive.cs │ │ ├── PoisonIndexes │ │ │ └── PoisonIndex.cs │ │ ├── ProjectingDates.cs │ │ ├── Queries │ │ │ ├── Boolean.cs │ │ │ ├── DynamicQueriesOnMetadata.cs │ │ │ ├── Fetching.cs │ │ │ ├── Generics.cs │ │ │ ├── LuceneQueryCustomMetadata.cs │ │ │ ├── NameStartsWith.cs │ │ │ ├── QueryByTypeOnly.cs │ │ │ ├── QueryProvider.cs │ │ │ ├── QueryWithPercentageSign.cs │ │ │ ├── QueryingByNegative.cs │ │ │ ├── QueryingByNull.cs │ │ │ ├── QueryingDateTime.cs │ │ │ ├── QueryingFromIndex.cs │ │ │ ├── QueryingOnEmptyString.cs │ │ │ ├── QueryingOnEqualToNull.cs │ │ │ ├── QueryingOnMetadata.cs │ │ │ ├── QueryingOnValueWithMinus.cs │ │ │ ├── QueryingOverTags.cs │ │ │ ├── QueryingWithDynamicRavenQueryInspector.cs │ │ │ ├── RangeQueries.cs │ │ │ ├── StatsOnDynamicQueries.cs │ │ │ └── WithAs.cs │ │ ├── RavenDB9939.cs │ │ ├── Stacey │ │ │ └── Aspects.cs │ │ └── WhereUsingUnicodeTheTextEnteredShouldNotBeNormalized.cs │ ├── Client │ │ ├── Attachments │ │ │ ├── AttachmentFailover.cs │ │ │ ├── AttachmentsBigFiles.cs │ │ │ ├── AttachmentsCrud.cs │ │ │ ├── AttachmentsReplication.cs │ │ │ ├── AttachmentsRevisions.cs │ │ │ ├── AttachmentsSession.cs │ │ │ ├── AttachmentsSessionAsync.cs │ │ │ ├── AttachmentsSmuggler.cs │ │ │ ├── AttachmentsStreamTests.cs │ │ │ ├── BigDummyStream.cs │ │ │ ├── BulkInsertAttachments.cs │ │ │ ├── RavenDB_20601.cs │ │ │ └── RavenDB_20792.cs │ │ ├── BulkInserts.cs │ │ ├── ChangesApiFailover.cs │ │ ├── ClientConfigurationTests.cs │ │ ├── Counters │ │ │ ├── BulkInsertCounters.cs │ │ │ ├── CountersCluster.cs │ │ │ ├── CountersReplication.cs │ │ │ ├── CountersSingleNode.cs │ │ │ ├── PatchOnCounters.cs │ │ │ ├── QueryOnCounters.cs │ │ │ └── SessionCounters.cs │ │ ├── CreateSampleDataTests.cs │ │ ├── DatabaseSettingsOperationTests.cs │ │ ├── DeleteByIndexTests.cs │ │ ├── ForceRevisionCreation.cs │ │ ├── Indexing │ │ │ ├── Counters │ │ │ │ ├── BasicCountersIndexes_JavaScript.cs │ │ │ │ └── BasicCountersIndexes_StrongSyntax.cs │ │ │ ├── IndexesFromClient.cs │ │ │ └── TimeSeries │ │ │ │ ├── BasicTimeSeriesIndexes_JavaScript.cs │ │ │ │ ├── BasicTimeSeriesIndexes_MethodSyntax.cs │ │ │ │ ├── BasicTimeSeriesIndexes_MixedSyntax.cs │ │ │ │ ├── BasicTimeSeriesIndexes_StrongSyntax.cs │ │ │ │ └── TimeSeriesIndexStreamTests.cs │ │ ├── JsonPatchTests.cs │ │ ├── Lazy │ │ │ └── Async │ │ │ │ └── lazyAsync.cs │ │ ├── MoreLikeThis │ │ │ └── MoreLikeThisTests.cs │ │ ├── Operations │ │ │ └── StudioOperationsTests.cs │ │ ├── OptimisticConcurrency.cs │ │ ├── Queries │ │ │ ├── FullTextSearch.cs │ │ │ └── RavenDB-17041.cs │ │ ├── QueriesWithCustomFunctions.cs │ │ ├── RavenDB_21466.cs │ │ ├── RavenDB_6407.cs │ │ ├── RequestExecutorTestsSlow.cs │ │ ├── Subscriptions │ │ │ ├── ConcurrentSubscriptionsTests.cs │ │ │ ├── CriteriaScript.cs │ │ │ ├── LimitSubscriptionsConnectionsAmount.cs │ │ │ ├── RavenDB-15553.cs │ │ │ ├── RavenDB-8383.cs │ │ │ ├── RavenDB-8404.cs │ │ │ ├── RavenDB-8464.cs │ │ │ ├── RavenDB-8814.cs │ │ │ ├── RavenDB-8831.cs │ │ │ ├── RavenDB-9068.cs │ │ │ ├── RavenDB_11250.cs │ │ │ ├── RavenDB_13761.cs │ │ │ ├── RavenDB_15703.cs │ │ │ ├── RavenDB_16944.cs │ │ │ ├── RavenDB_3082.cs │ │ │ ├── RavenDB_3193.cs │ │ │ ├── RavenDB_3484.cs │ │ │ ├── RavenDB_3491.cs │ │ │ ├── RavenDB_3917.cs │ │ │ ├── RavenDB_4645.cs │ │ │ ├── RavenDB_7384.cs │ │ │ ├── RavenDB_9117.cs │ │ │ ├── RavenDB_9294.cs │ │ │ ├── RavenDB_9512.cs │ │ │ ├── RevisionsSubscriptions.cs │ │ │ ├── SubscriptionOperationsSignaling.cs │ │ │ ├── SubscriptionScriptErrorHandling.cs │ │ │ ├── SubscriptionScripts.cs │ │ │ ├── Subscriptions.cs │ │ │ ├── SubscriptionsBasic.cs │ │ │ ├── SubscriptionsPaths.cs │ │ │ └── TestSubscriptionOnDisabledDatabase.cs │ │ ├── TimeSeries │ │ │ ├── BulkInsert │ │ │ │ ├── BulkInsert.cs │ │ │ │ └── TypedBulkInsert.cs │ │ │ ├── IncrementalTimeSeriesTests.cs │ │ │ ├── Issues │ │ │ │ ├── RavenDB-13484.cs │ │ │ │ ├── RavenDB-13574.cs │ │ │ │ ├── RavenDB-13592.cs │ │ │ │ ├── RavenDB-14164.cs │ │ │ │ ├── RavenDB-14293.cs │ │ │ │ ├── RavenDB-14304.cs │ │ │ │ ├── RavenDB-14312.cs │ │ │ │ ├── RavenDB-14388.cs │ │ │ │ ├── RavenDB-14426.cs │ │ │ │ ├── RavenDB-14533.cs │ │ │ │ ├── RavenDB-14572.cs │ │ │ │ ├── RavenDB-14587.cs │ │ │ │ ├── RavenDB-14633.cs │ │ │ │ ├── RavenDB-14651.cs │ │ │ │ ├── RavenDB-14675.cs │ │ │ │ ├── RavenDB-14702.cs │ │ │ │ ├── RavenDB-14800.cs │ │ │ │ ├── RavenDB-14994.cs │ │ │ │ ├── RavenDB-15000.cs │ │ │ │ ├── RavenDB-15010.cs │ │ │ │ ├── RavenDB-15020.cs │ │ │ │ ├── RavenDB-15029.cs │ │ │ │ ├── RavenDB-15246.cs │ │ │ │ ├── RavenDB-15341.cs │ │ │ │ ├── RavenDB-15376.cs │ │ │ │ ├── RavenDB-15452.cs │ │ │ │ ├── RavenDB-15641.cs │ │ │ │ ├── RavenDB-15759.cs │ │ │ │ ├── RavenDB-15792.cs │ │ │ │ ├── RavenDB-15827.cs │ │ │ │ ├── RavenDB-15939.cs │ │ │ │ ├── RavenDB-16014.cs │ │ │ │ ├── RavenDB-16060.cs │ │ │ │ ├── RavenDB-16221.cs │ │ │ │ ├── RavenDB-16271.cs │ │ │ │ ├── RavenDB-16366.cs │ │ │ │ ├── RavenDB-16906.cs │ │ │ │ ├── RavenDB_14386.cs │ │ │ │ ├── RavenDB_15343.cs │ │ │ │ ├── RavenDB_15732.cs │ │ │ │ ├── RavenDB_15836.cs │ │ │ │ ├── RavenDB_16253.cs │ │ │ │ ├── RavenDB_16365.cs │ │ │ │ └── RavenDB_21649.cs │ │ │ ├── Operations │ │ │ │ └── TimeSeriesOperations.cs │ │ │ ├── Patch │ │ │ │ └── TimeSeriesPatchTests.cs │ │ │ ├── Policies │ │ │ │ └── TimeSeriesConfigurationTests.cs │ │ │ ├── Query │ │ │ │ ├── IncrementalTimeSeriesQueries.cs │ │ │ │ ├── QueryFromMultipleTimeSeries.cs │ │ │ │ ├── TimeSeriesDocumentQuery.cs │ │ │ │ ├── TimeSeriesGroupByTag.cs │ │ │ │ ├── TimeSeriesJavascriptProjections.cs │ │ │ │ ├── TimeSeriesLinqQuery.cs │ │ │ │ └── TimeSeriesRawQuery.cs │ │ │ ├── Replication │ │ │ │ └── TimeSeriesReplicationTests.cs │ │ │ ├── Session │ │ │ │ ├── TimeSeriesIncludes.cs │ │ │ │ ├── TimeSeriesRangesCache.cs │ │ │ │ ├── TimeSeriesSessionTests.cs │ │ │ │ ├── TimeSeriesStreamingTests.cs │ │ │ │ └── TimeSeriesTypedSessionTests.cs │ │ │ ├── TimeSeriesAndDocumentConflicts.cs │ │ │ └── TimeSeriesStatsUpdate.cs │ │ ├── UniqueValues.cs │ │ ├── UpdateTopologyTests.cs │ │ └── WhatChangedTests.cs │ ├── Cluster │ │ ├── ClusterIndexNotificationsTest.cs │ │ ├── ClusterMaintenanceTest.cs │ │ ├── ClusterModesForRequestExecutorTest.cs │ │ ├── ClusterObserverTests.cs │ │ ├── ClusterOperationTests.cs │ │ ├── ClusterTransactionTests.cs │ │ ├── CompareExchangeExpirationTest.cs │ │ ├── CompareExchangeTests.cs │ │ ├── NServiceBusCaseTest.cs │ │ ├── NodeRedistribution.cs │ │ ├── ParallelClusterTransactionsTests.cs │ │ ├── RavenDB_22502.cs │ │ └── ShardedClusterTransactionTests.cs │ ├── Corax │ │ ├── Bugs │ │ │ ├── CompactTreeAddAndRemove.cs │ │ │ ├── LargePostingListSize.cs │ │ │ ├── RavenDB-21609.cs │ │ │ ├── TermMatchTests.cs │ │ │ ├── repro-2.log.gz │ │ │ └── repro-4.log.gz │ │ ├── CoraxOrderBy.cs │ │ ├── CoraxSlowQueryTests.cs │ │ ├── DeleteTest.cs │ │ ├── GrowableBufferTests.cs │ │ ├── IncludeScoresAndDistancesCorax.cs │ │ ├── IndexBackwardCompatibilityAndPersistence.cs │ │ ├── IndexSearcher.cs │ │ ├── IndexSearcherTestExtended.cs │ │ ├── RavenDB-18377.cs │ │ ├── RavenDB-19703.cs │ │ ├── RavenDB-20923.cs │ │ ├── RavenDB-21164.cs │ │ ├── RavenDB-21177.cs │ │ ├── RavenDB-21430.cs │ │ ├── RavenDB-21519.cs │ │ ├── RavenDB-21613.cs │ │ ├── RavenDB-21632.cs │ │ ├── RavenDB-21642.cs │ │ ├── RavenDB-21689.cs │ │ ├── RavenDB-22999.cs │ │ ├── RavenDB_18864.cs │ │ ├── RavenDB_21573.cs │ │ ├── RavenDB_21818.cs │ │ ├── RavenDB_22811.cs │ │ ├── RavenDB_22953.cs │ │ └── RavenIntegration.cs │ ├── Core │ │ ├── AdminConsole │ │ │ └── AdminJsConsoleTests.cs │ │ ├── Commands │ │ │ ├── Batches.cs │ │ │ ├── Documents.cs │ │ │ ├── Indexes.cs │ │ │ ├── Other.cs │ │ │ ├── Patching.cs │ │ │ └── Querying.cs │ │ ├── Indexing │ │ │ ├── BloomFilters.cs │ │ │ ├── CustomAnalyzers.cs │ │ │ ├── IndexDefinitionMethods.cs │ │ │ ├── IndexFieldsValidation.cs │ │ │ ├── MultiMap.cs │ │ │ ├── OutputReduceToCollectionClusterTests.cs │ │ │ └── ReferencedDocuments.cs │ │ ├── Querying │ │ │ ├── Filtering.cs │ │ │ ├── Intersection.cs │ │ │ ├── Linq.cs │ │ │ ├── MoreLikeThis.cs │ │ │ ├── Paging.cs │ │ │ ├── Projections.cs │ │ │ ├── Searching.cs │ │ │ └── Sorting.cs │ │ ├── ScriptedPatching │ │ │ └── ScriptedPatchTests.cs │ │ ├── Session │ │ │ ├── AddOrPatch.cs │ │ │ ├── Advanced.cs │ │ │ ├── Crud.cs │ │ │ ├── Includes.cs │ │ │ └── Keys.cs │ │ ├── Streaming │ │ │ ├── DocumentStreaming.cs │ │ │ ├── OnBeforeQuery.cs │ │ │ └── QueryStreaming.cs │ │ ├── Subscriptions │ │ │ └── RavenDB-3193.cs │ │ └── Utils │ │ │ ├── Entities │ │ │ ├── Camera.cs │ │ │ ├── Company.cs │ │ │ ├── Event.cs │ │ │ ├── Faceted │ │ │ │ ├── Camera.cs │ │ │ │ ├── Currency.cs │ │ │ │ └── Order.cs │ │ │ ├── Headquater.cs │ │ │ ├── ISearchable.cs │ │ │ ├── Post.cs │ │ │ ├── PostContent.cs │ │ │ ├── TShirt.cs │ │ │ ├── TShirtType.cs │ │ │ ├── User.cs │ │ │ └── UserWithoutId.cs │ │ │ └── Indexes │ │ │ ├── CameraCost.cs │ │ │ ├── Companies_AllProperties.cs │ │ │ ├── Companies_ByEmployeeLastName.cs │ │ │ ├── Companies_CompanyByType.cs │ │ │ ├── Companies_CustomAnalyzers.cs │ │ │ ├── Companies_SortByName.cs │ │ │ ├── Companies_WithReferencedEmployees.cs │ │ │ ├── Events_SpatialIndex.cs │ │ │ ├── MultiMapIndex.cs │ │ │ ├── Posts_ByContent.cs │ │ │ ├── Posts_ByTitleAndContent.cs │ │ │ ├── Posts_Recurse.cs │ │ │ ├── TShirtIndex.cs │ │ │ ├── Users_ByCity.cs │ │ │ ├── Users_ByName.cs │ │ │ └── Users_CountByLastName.cs │ ├── Data │ │ ├── RavenDB-12785.ravendbdump │ │ ├── RavenDB-13937.ravendbdump │ │ ├── RavenDB_10404 │ │ │ └── northwind.4.0.0.ravendb-snapshot │ │ ├── RavenDB_10958.json │ │ ├── RavenDB_10958.txt │ │ ├── RavenDB_11488 │ │ │ ├── ravendb-11488-artificial-docs-not-included.ravendbdump │ │ │ └── ravendb-11488.ravendb-snapshot │ │ ├── RavenDB_11664 │ │ │ └── 1.ravendbdump │ │ ├── RavenDB_12022 │ │ │ └── counters.4.1.4.ravendb-snapshot │ │ ├── RavenDB_13291 │ │ │ └── collection-with-counter-word-4.1.5-nightly.ravendb-snapshot │ │ ├── RavenDB_13468 │ │ │ ├── counters-snapshot-document.json │ │ │ └── counters.test.4.1.6.ravendb-snapshot │ │ ├── RavenDB_13512 │ │ │ ├── Incremental │ │ │ │ ├── 17.ravendb-full-backup │ │ │ │ ├── 18-01.ravendb-incremental-backup │ │ │ │ └── 18.ravendb-incremental-backup │ │ │ └── counters.test.4.1.6.ravendb-full-backup │ │ ├── RavenDB_13759 │ │ │ ├── Auto_Orders_ByOrderedAt.zip │ │ │ └── Orders_ByOrderBy.zip │ │ ├── RavenDB_13940 │ │ │ ├── storage-with-reused-journal-and-synced-data-2.zip │ │ │ └── storage-with-reused-journal-and-synced-data.zip │ │ ├── RavenDB_14939 │ │ │ └── MyAnalyzer.cs │ │ ├── RavenDB_15159 │ │ │ └── 12119.smaps.gz │ │ ├── RavenDB_15223 │ │ │ ├── counters.4.2.103.ravendb-snapshot │ │ │ └── manycounters.4.2.103.ravendb-snapshot │ │ ├── RavenDB_15294 │ │ │ └── northwind-4.2.103.zip │ │ ├── RavenDB_15700 │ │ │ ├── BewerberStatus.csv │ │ │ ├── Bewerbung.csv │ │ │ └── Vakanz.csv │ │ ├── RavenDB_15753 │ │ │ └── cat.jpg │ │ ├── RavenDB_15898 │ │ │ └── 1.ravendbdump │ │ ├── RavenDB_16328 │ │ │ └── MyAnalyzer.cs │ │ ├── RavenDB_16378 │ │ │ └── RavenDB-16401-NRE.ravendb-snapshot │ │ ├── RavenDB_17070 │ │ │ └── Precorax │ │ │ │ ├── Auto_Orders_ByOrderedAt.zip │ │ │ │ └── Orders_ByOrderBy.zip │ │ ├── RavenDB_17312 │ │ │ └── map-reduce_54_001_index_ver.ravendb-snapshot │ │ ├── RavenDB_18381 │ │ │ └── 2022-03-27-12-38-05-8912792.ravendb-snapshot │ │ ├── RavenDB_18687 │ │ │ └── auto_indexes.ravendbdump │ │ ├── RavenDB_18864 │ │ │ └── 53AutoIndexCoraxImportTest.ravendbdump │ │ ├── RavenDB_19205 │ │ │ └── RavenDB_19205.ravendb-snapshot │ │ ├── RavenDB_19449 │ │ │ └── RavenDB_19449.zip │ │ ├── RavenDB_19560 │ │ │ └── ravendb_19560.ravendb-snapshot │ │ ├── RavenDB_19723 │ │ │ └── RavenDB_19723.ravendbdump │ │ ├── RavenDB_21263 │ │ │ ├── revisionsWithLargeChangeVector-oldDatabaseVersion.ravendb-snapshot │ │ │ ├── test1111-emptySupportedFeatures.ravendbdump │ │ │ └── test1111-withoutSupportedFeatures.ravendbdump │ │ ├── RavenDB_21889 │ │ │ └── RavenDB_21889_BackwardCompatibility.ravendb-snapshot │ │ ├── RavenDB_21957 │ │ │ ├── js_index_with_dates_54112.ravendb-snapshot │ │ │ └── js_index_with_dates_601.ravendb-snapshot │ │ ├── RavenDB_22200 │ │ │ └── OneDamagedBucket.ravendbdump │ │ ├── RavenDB_22363 │ │ │ └── RavenDB_22363.ravendb-snapshot │ │ ├── RavenDB_22498 │ │ │ ├── AutoIndexes.FastTests.json.gz │ │ │ └── AutoIndexes.SlowTests.json.gz │ │ ├── RavenDB_22534 │ │ │ └── RavenDB_22534.ravendb-snapshot │ │ ├── RavenDB_22703 │ │ │ └── RavenDB_22703.ravendb-snapshot │ │ ├── RavenDB_22937 │ │ │ └── RavenDB_22937.ravendb-snapshot │ │ ├── RavenDB_22999 │ │ │ └── RavenDB-22999.ravendb-snapshot │ │ ├── RavenDB_23100 │ │ │ ├── 2024-11-18-17-16-52-7843589.ravendb-snapshot │ │ │ ├── 2024-11-19-08-30-34-7519596.ravendb-snapshot │ │ │ ├── 2024-11-19-10-39-25-6242058.ravendb-snapshot │ │ │ └── 2024-11-19-10-43-34-8245899.ravendb-snapshot │ │ ├── RavenDB_8355 │ │ │ ├── MySorter.cs │ │ │ └── MySorterWithDiagnostics.cs │ │ ├── RavenDB_9912 │ │ │ ├── 1.ravendbdump │ │ │ └── 2.ravendbdump │ │ ├── data.txt │ │ ├── data2.txt │ │ ├── legacy-counters.4.1.5.ravendbdump │ │ ├── mssql.basic.create.sql │ │ ├── mssql.basic.insert.sql │ │ ├── mssql.northwind.create.sql │ │ ├── mssql.northwind.insert.sql │ │ ├── mysql.basic.create.sql │ │ ├── mysql.basic.insert.sql │ │ ├── mysql.northwind.create.sql │ │ ├── mysql.northwind.insert.sql │ │ ├── non-leaf-page-seq-id-large-values-2.txt │ │ ├── non-leaf-page-seq-id-large-values.txt │ │ ├── npgsql.basic.create.sql │ │ ├── npgsql.basic.insert.sql │ │ ├── npgsql.northwind.create.sql │ │ ├── npgsql.northwind.insert.sql │ │ ├── oraclesql.basic.create.sql │ │ ├── oraclesql.basic.insert.sql │ │ ├── oraclesql.northwind.create.sql │ │ ├── oraclesql.northwind.insert.sql │ │ ├── places.txt │ │ └── testing.ravendbdump │ ├── DatabaseSettings │ │ ├── DatabaseSettings.cs │ │ └── SettingsJson.cs │ ├── ExtensionPoints │ │ ├── ExtensionPointsTests.cs │ │ └── RavenDB_12161.cs │ ├── FacetTestBase.cs │ ├── Issues │ │ ├── EncryptedDatabaseGroup.cs │ │ ├── FilteredReplicationTests.cs │ │ ├── GH-15634.cs │ │ ├── GH-6008.cs │ │ ├── IAsyncDocumentSessionExtensionsTest.cs │ │ ├── Issue_19302.cs │ │ ├── RDBC-110.cs │ │ ├── RDBC-123.cs │ │ ├── RDBC-128.cs │ │ ├── RDBC-163.cs │ │ ├── RDBC-164.cs │ │ ├── RDBC-204.cs │ │ ├── RDBC-282.cs │ │ ├── RDBC-285.cs │ │ ├── RDBC-328.cs │ │ ├── RDBC-372.cs │ │ ├── RDBC-631.cs │ │ ├── RDBC-78.cs │ │ ├── RDBCL_772.cs │ │ ├── RDBC_122.cs │ │ ├── RDBC_161.cs │ │ ├── RDBC_319.cs │ │ ├── RDBC_326.cs │ │ ├── RDBC_390.cs │ │ ├── RDBC_391.cs │ │ ├── RDBC_414.cs │ │ ├── RDBC_622.cs │ │ ├── RDBC_76.cs │ │ ├── RDBQA_11.cs │ │ ├── RDBS-68.cs │ │ ├── RDoc-1995.cs │ │ ├── RDoc_1318.cs │ │ ├── RDoc_56.cs │ │ ├── RDoc_60.cs │ │ ├── RDoc_662.cs │ │ ├── RDoc_76.cs │ │ ├── RavenDB-10002.cs │ │ ├── RavenDB-10046.cs │ │ ├── RavenDB-10144.cs │ │ ├── RavenDB-10157.cs │ │ ├── RavenDB-10229.cs │ │ ├── RavenDB-10250.cs │ │ ├── RavenDB-10289.cs │ │ ├── RavenDB-10329.cs │ │ ├── RavenDB-10343.cs │ │ ├── RavenDB-10439.cs │ │ ├── RavenDB-10446.cs │ │ ├── RavenDB-10450.cs │ │ ├── RavenDB-10457.cs │ │ ├── RavenDB-10470.cs │ │ ├── RavenDB-10475.cs │ │ ├── RavenDB-10490.cs │ │ ├── RavenDB-10493.cs │ │ ├── RavenDB-10497.cs │ │ ├── RavenDB-10499.cs │ │ ├── RavenDB-10500.cs │ │ ├── RavenDB-10513.cs │ │ ├── RavenDB-10523.cs │ │ ├── RavenDB-10538.cs │ │ ├── RavenDB-10543.cs │ │ ├── RavenDB-10566.cs │ │ ├── RavenDB-10568.cs │ │ ├── RavenDB-10590.cs │ │ ├── RavenDB-10594.cs │ │ ├── RavenDB-10607.cs │ │ ├── RavenDB-10625.cs │ │ ├── RavenDB-10629.cs │ │ ├── RavenDB-10636.cs │ │ ├── RavenDB-10666.cs │ │ ├── RavenDB-10717.cs │ │ ├── RavenDB-10726.cs │ │ ├── RavenDB-10737.cs │ │ ├── RavenDB-10965.cs │ │ ├── RavenDB-10995.cs │ │ ├── RavenDB-10996.cs │ │ ├── RavenDB-11001.cs │ │ ├── RavenDB-11089.cs │ │ ├── RavenDB-11111.cs │ │ ├── RavenDB-11149.cs │ │ ├── RavenDB-11166.cs │ │ ├── RavenDB-11191.cs │ │ ├── RavenDB-11196.cs │ │ ├── RavenDB-11372.cs │ │ ├── RavenDB-11381.cs │ │ ├── RavenDB-11385.cs │ │ ├── RavenDB-11402.cs │ │ ├── RavenDB-11422.cs │ │ ├── RavenDB-11439.cs │ │ ├── RavenDB-11442.cs │ │ ├── RavenDB-11461.cs │ │ ├── RavenDB-11480.cs │ │ ├── RavenDB-11513.cs │ │ ├── RavenDB-11571.cs │ │ ├── RavenDB-11604.cs │ │ ├── RavenDB-11701.cs │ │ ├── RavenDB-11702.cs │ │ ├── RavenDB-11703.cs │ │ ├── RavenDB-11705.cs │ │ ├── RavenDB-11721.cs │ │ ├── RavenDB-11748.cs │ │ ├── RavenDB-11750.cs │ │ ├── RavenDB-11767.cs │ │ ├── RavenDB-11770.cs │ │ ├── RavenDB-11786.cs │ │ ├── RavenDB-11789.cs │ │ ├── RavenDB-11795.cs │ │ ├── RavenDB-11796.cs │ │ ├── RavenDB-11804.cs │ │ ├── RavenDB-11819.cs │ │ ├── RavenDB-11824.cs │ │ ├── RavenDB-11836.cs │ │ ├── RavenDB-11837.cs │ │ ├── RavenDB-11885.cs │ │ ├── RavenDB-11893.cs │ │ ├── RavenDB-11900.cs │ │ ├── RavenDB-11907.cs │ │ ├── RavenDB-11913.cs │ │ ├── RavenDB-11980.cs │ │ ├── RavenDB-11988.cs │ │ ├── RavenDB-12051.cs │ │ ├── RavenDB-12064.cs │ │ ├── RavenDB-12066.cs │ │ ├── RavenDB-12077.cs │ │ ├── RavenDB-12094.cs │ │ ├── RavenDB-12101.cs │ │ ├── RavenDB-12132.cs │ │ ├── RavenDB-12204.cs │ │ ├── RavenDB-12245.cs │ │ ├── RavenDB-12248.cs │ │ ├── RavenDB-12254.cs │ │ ├── RavenDB-12278.cs │ │ ├── RavenDB-12281.cs │ │ ├── RavenDB-12292.cs │ │ ├── RavenDB-12314.cs │ │ ├── RavenDB-12357.cs │ │ ├── RavenDB-12358.cs │ │ ├── RavenDB-12359.cs │ │ ├── RavenDB-12369.cs │ │ ├── RavenDB-12378.cs │ │ ├── RavenDB-12442.cs │ │ ├── RavenDB-12477.cs │ │ ├── RavenDB-12484.cs │ │ ├── RavenDB-12573.cs │ │ ├── RavenDB-12598.cs │ │ ├── RavenDB-12742.cs │ │ ├── RavenDB-12775.cs │ │ ├── RavenDB-12780.cs │ │ ├── RavenDB-12785.cs │ │ ├── RavenDB-1279.cs │ │ ├── RavenDB-12798.cs │ │ ├── RavenDB-12847.cs │ │ ├── RavenDB-12892.cs │ │ ├── RavenDB-12902.cs │ │ ├── RavenDB-12921.cs │ │ ├── RavenDB-13016.cs │ │ ├── RavenDB-13029.cs │ │ ├── RavenDB-13060.cs │ │ ├── RavenDB-13064.cs │ │ ├── RavenDB-13086.cs │ │ ├── RavenDB-13100.cs │ │ ├── RavenDB-13163.cs │ │ ├── RavenDB-13185.cs │ │ ├── RavenDB-13269.cs │ │ ├── RavenDB-13274.cs │ │ ├── RavenDB-13277.cs │ │ ├── RavenDB-13278.cs │ │ ├── RavenDB-13326.cs │ │ ├── RavenDB-13341.cs │ │ ├── RavenDB-13349.cs │ │ ├── RavenDB-13367.cs │ │ ├── RavenDB-13389.cs │ │ ├── RavenDB-13412.cs │ │ ├── RavenDB-13434.cs │ │ ├── RavenDB-13442.cs │ │ ├── RavenDB-13444.cs │ │ ├── RavenDB-13452.cs │ │ ├── RavenDB-13468.cs │ │ ├── RavenDB-13491.cs │ │ ├── RavenDB-13498.cs │ │ ├── RavenDB-13503.cs │ │ ├── RavenDB-13510.cs │ │ ├── RavenDB-13553.cs │ │ ├── RavenDB-13595.cs │ │ ├── RavenDB-13656.cs │ │ ├── RavenDB-13680.cs │ │ ├── RavenDB-13682.cs │ │ ├── RavenDB-13695.cs │ │ ├── RavenDB-13697.cs │ │ ├── RavenDB-13735.cs │ │ ├── RavenDB-13767.cs │ │ ├── RavenDB-13937.cs │ │ ├── RavenDB-13975.cs │ │ ├── RavenDB-14036.cs │ │ ├── RavenDB-14058.cs │ │ ├── RavenDB-14200.cs │ │ ├── RavenDB-14217.cs │ │ ├── RavenDB-14272.cs │ │ ├── RavenDB-14276.cs │ │ ├── RavenDB-14281.cs │ │ ├── RavenDB-14315.cs │ │ ├── RavenDB-14323.cs │ │ ├── RavenDB-14328.cs │ │ ├── RavenDB-14342.cs │ │ ├── RavenDB-14361.cs │ │ ├── RavenDB-14419.cs │ │ ├── RavenDB-14439.cs │ │ ├── RavenDB-14576.cs │ │ ├── RavenDB-14650.cs │ │ ├── RavenDB-14655.cs │ │ ├── RavenDB-14717.cs │ │ ├── RavenDB-14724.cs │ │ ├── RavenDB-14727.cs │ │ ├── RavenDB-14783.cs │ │ ├── RavenDB-14797.cs │ │ ├── RavenDB-14798.cs │ │ ├── RavenDB-14806.cs │ │ ├── RavenDB-14811.cs │ │ ├── RavenDB-14880.cs │ │ ├── RavenDB-1489.cs │ │ ├── RavenDB-14903.cs │ │ ├── RavenDB-14978.cs │ │ ├── RavenDB-14989.cs │ │ ├── RavenDB-15088.cs │ │ ├── RavenDB-15133.cs │ │ ├── RavenDB-15143.cs │ │ ├── RavenDB-15224.cs │ │ ├── RavenDB-15234.cs │ │ ├── RavenDB-15294.cs │ │ ├── RavenDB-15298.cs │ │ ├── RavenDB-15330.cs │ │ ├── RavenDB-15402.cs │ │ ├── RavenDB-15440.cs │ │ ├── RavenDB-15483.cs │ │ ├── RavenDB-15492.cs │ │ ├── RavenDB-15497.cs │ │ ├── RavenDB-15500.cs │ │ ├── RavenDB-15506.cs │ │ ├── RavenDB-15511.cs │ │ ├── RavenDB-15535.cs │ │ ├── RavenDB-15539.cs │ │ ├── RavenDB-15565.cs │ │ ├── RavenDB-15588.cs │ │ ├── RavenDB-15625.cs │ │ ├── RavenDB-15629.cs │ │ ├── RavenDB-15656.cs │ │ ├── RavenDB-15693.cs │ │ ├── RavenDB-15739.cs │ │ ├── RavenDB-15754.cs │ │ ├── RavenDB-15772.cs │ │ ├── RavenDB-15794.cs │ │ ├── RavenDB-15807.cs │ │ ├── RavenDB-15826.cs │ │ ├── RavenDB-15890.cs │ │ ├── RavenDB-15898.cs │ │ ├── RavenDB-15900.cs │ │ ├── RavenDB-15903.cs │ │ ├── RavenDB-15909.cs │ │ ├── RavenDB-15924.cs │ │ ├── RavenDB-15983.cs │ │ ├── RavenDB-16031.cs │ │ ├── RavenDB-16035.cs │ │ ├── RavenDB-16037.cs │ │ ├── RavenDB-16038.cs │ │ ├── RavenDB-16041.cs │ │ ├── RavenDB-16045.cs │ │ ├── RavenDB-16068.cs │ │ ├── RavenDB-16078.cs │ │ ├── RavenDB-16167.cs │ │ ├── RavenDB-16190.cs │ │ ├── RavenDB-16254.cs │ │ ├── RavenDB-16468.cs │ │ ├── RavenDB-16498.cs │ │ ├── RavenDB-16510.cs │ │ ├── RavenDB-16556.cs │ │ ├── RavenDB-16595.cs │ │ ├── RavenDB-16614.cs │ │ ├── RavenDB-16659.cs │ │ ├── RavenDB-16724.cs │ │ ├── RavenDB-16751.cs │ │ ├── RavenDB-16782.cs │ │ ├── RavenDB-16827.cs │ │ ├── RavenDB-16889.cs │ │ ├── RavenDB-16902.cs │ │ ├── RavenDB-16958.cs │ │ ├── RavenDB-16961.cs │ │ ├── RavenDB-16963.cs │ │ ├── RavenDB-16975.cs │ │ ├── RavenDB-17012.cs │ │ ├── RavenDB-17061.cs │ │ ├── RavenDB-17068.cs │ │ ├── RavenDB-17079.cs │ │ ├── RavenDB-17082.cs │ │ ├── RavenDB-17087.cs │ │ ├── RavenDB-17096.cs │ │ ├── RavenDB-17097.cs │ │ ├── RavenDB-17123.cs │ │ ├── RavenDB-17127.cs │ │ ├── RavenDB-17128.cs │ │ ├── RavenDB-17134.cs │ │ ├── RavenDB-17141.cs │ │ ├── RavenDB-17153.cs │ │ ├── RavenDB-17154.cs │ │ ├── RavenDB-17157.cs │ │ ├── RavenDB-17159.cs │ │ ├── RavenDB-17206.cs │ │ ├── RavenDB-17234.cs │ │ ├── RavenDB-17250.cs │ │ ├── RavenDB-17282.cs │ │ ├── RavenDB-17289.cs │ │ ├── RavenDB-17303.cs │ │ ├── RavenDB-17311.cs │ │ ├── RavenDB-17329.cs │ │ ├── RavenDB-17339.cs │ │ ├── RavenDB-17347.cs │ │ ├── RavenDB-17382.cs │ │ ├── RavenDB-17418.cs │ │ ├── RavenDB-17419.cs │ │ ├── RavenDB-17420.cs │ │ ├── RavenDB-17451.cs │ │ ├── RavenDB-17494.cs │ │ ├── RavenDB-17551.cs │ │ ├── RavenDB-17566.cs │ │ ├── RavenDB-17574.cs │ │ ├── RavenDB-17597.cs │ │ ├── RavenDB-17624.cs │ │ ├── RavenDB-17650.cs │ │ ├── RavenDB-17651.cs │ │ ├── RavenDB-17661.cs │ │ ├── RavenDB-17689.cs │ │ ├── RavenDB-17698.cs │ │ ├── RavenDB-17699.cs │ │ ├── RavenDB-17702.cs │ │ ├── RavenDB-17708.cs │ │ ├── RavenDB-17711.cs │ │ ├── RavenDB-17745.cs │ │ ├── RavenDB-17758.cs │ │ ├── RavenDB-17807.cs │ │ ├── RavenDB-17854.cs │ │ ├── RavenDB-17872.cs │ │ ├── RavenDB-17903.cs │ │ ├── RavenDB-17936.cs │ │ ├── RavenDB-17937.cs │ │ ├── RavenDB-17980.cs │ │ ├── RavenDB-17996.cs │ │ ├── RavenDB-18073.cs │ │ ├── RavenDB-18096.cs │ │ ├── RavenDB-18163.cs │ │ ├── RavenDB-18332.cs │ │ ├── RavenDB-18373.cs │ │ ├── RavenDB-18377.cs │ │ ├── RavenDB-18399.cs │ │ ├── RavenDB-18404.cs │ │ ├── RavenDB-18413.cs │ │ ├── RavenDB-18426.cs │ │ ├── RavenDB-18427.cs │ │ ├── RavenDB-18442.cs │ │ ├── RavenDB-1847.cs │ │ ├── RavenDB-18512.cs │ │ ├── RavenDB-18513.cs │ │ ├── RavenDB-18515.cs │ │ ├── RavenDB-18545.cs │ │ ├── RavenDB-18554.cs │ │ ├── RavenDB-18561.cs │ │ ├── RavenDB-18594.cs │ │ ├── RavenDB-18619.cs │ │ ├── RavenDB-18643.cs │ │ ├── RavenDB-18657.cs │ │ ├── RavenDB-18659.cs │ │ ├── RavenDB-18664.cs │ │ ├── RavenDB-18674.cs │ │ ├── RavenDB-18688.cs │ │ ├── RavenDB-18916.cs │ │ ├── RavenDB-18936.cs │ │ ├── RavenDB-19016.cs │ │ ├── RavenDB-19076.cs │ │ ├── RavenDB-19096.cs │ │ ├── RavenDB-19100.cs │ │ ├── RavenDB-19101.cs │ │ ├── RavenDB-19109.cs │ │ ├── RavenDB-19127.cs │ │ ├── RavenDB-19146.cs │ │ ├── RavenDB-19148.cs │ │ ├── RavenDB-19205.cs │ │ ├── RavenDB-19209.cs │ │ ├── RavenDB-19240.cs │ │ ├── RavenDB-19279.cs │ │ ├── RavenDB-19286.cs │ │ ├── RavenDB-19317.cs │ │ ├── RavenDB-19350.cs │ │ ├── RavenDB-19379.cs │ │ ├── RavenDB-19385.cs │ │ ├── RavenDB-19415.cs │ │ ├── RavenDB-19426.cs │ │ ├── RavenDB-19447.cs │ │ ├── RavenDB-19453.cs │ │ ├── RavenDB-19466.cs │ │ ├── RavenDB-19467.cs │ │ ├── RavenDB-19481.cs │ │ ├── RavenDB-19482.cs │ │ ├── RavenDB-19484.cs │ │ ├── RavenDB-19488.cs │ │ ├── RavenDB-19519.cs │ │ ├── RavenDB-19533.cs │ │ ├── RavenDB-19538.cs │ │ ├── RavenDB-19541.cs │ │ ├── RavenDB-19544.cs │ │ ├── RavenDB-19561.cs │ │ ├── RavenDB-19563.cs │ │ ├── RavenDB-19625.cs │ │ ├── RavenDB-19629.cs │ │ ├── RavenDB-19634.cs │ │ ├── RavenDB-19650.cs │ │ ├── RavenDB-19659.cs │ │ ├── RavenDB-19696.cs │ │ ├── RavenDB-19699.cs │ │ ├── RavenDB-19837.cs │ │ ├── RavenDB-19843.cs │ │ ├── RavenDB-19852.cs │ │ ├── RavenDB-19887.cs │ │ ├── RavenDB-19922.cs │ │ ├── RavenDB-19925.cs │ │ ├── RavenDB-19932.cs │ │ ├── RavenDB-19945.cs │ │ ├── RavenDB-19951.cs │ │ ├── RavenDB-19963.cs │ │ ├── RavenDB-19964.cs │ │ ├── RavenDB-19967.cs │ │ ├── RavenDB-20033.cs │ │ ├── RavenDB-20136.cs │ │ ├── RavenDB-20145.cs │ │ ├── RavenDB-20248.cs │ │ ├── RavenDB-20283.cs │ │ ├── RavenDB-2036.cs │ │ ├── RavenDB-20412.cs │ │ ├── RavenDB-20421.cs │ │ ├── RavenDB-20423.cs │ │ ├── RavenDB-20424.cs │ │ ├── RavenDB-20444.cs │ │ ├── RavenDB-20529.cs │ │ ├── RavenDB-20593.cs │ │ ├── RavenDB-20634.cs │ │ ├── RavenDB-20724.cs │ │ ├── RavenDB-20731.cs │ │ ├── RavenDB-20780.cs │ │ ├── RavenDB-20782.cs │ │ ├── RavenDB-20783.cs │ │ ├── RavenDB-20846.cs │ │ ├── RavenDB-20882.cs │ │ ├── RavenDB-20922.cs │ │ ├── RavenDB-20972.cs │ │ ├── RavenDB-20979.cs │ │ ├── RavenDB-21028.cs │ │ ├── RavenDB-21050.cs │ │ ├── RavenDB-21088.cs │ │ ├── RavenDB-21089.cs │ │ ├── RavenDB-21101.cs │ │ ├── RavenDB-21150.cs │ │ ├── RavenDB-21171.cs │ │ ├── RavenDB-21173.cs │ │ ├── RavenDB-21242.cs │ │ ├── RavenDB-21247.cs │ │ ├── RavenDB-21254.cs │ │ ├── RavenDB-21255.cs │ │ ├── RavenDB-21273.cs │ │ ├── RavenDB-21324.cs │ │ ├── RavenDB-21328.cs │ │ ├── RavenDB-21334.cs │ │ ├── RavenDB-21344.cs │ │ ├── RavenDB-21381.cs │ │ ├── RavenDB-21382.cs │ │ ├── RavenDB-21399-2.cs │ │ ├── RavenDB-21427.cs │ │ ├── RavenDB-21480.cs │ │ ├── RavenDB-21490.cs │ │ ├── RavenDB-21535.cs │ │ ├── RavenDB-21566.cs │ │ ├── RavenDB-21569.cs │ │ ├── RavenDB-21574.cs │ │ ├── RavenDB-21588.cs │ │ ├── RavenDB-21589.cs │ │ ├── RavenDB-21608.cs │ │ ├── RavenDB-21651.cs │ │ ├── RavenDB-21668.cs │ │ ├── RavenDB-21693.cs │ │ ├── RavenDB-21702.cs │ │ ├── RavenDB-21760.cs │ │ ├── RavenDB-21777.cs │ │ ├── RavenDB-21784.cs │ │ ├── RavenDB-21879.cs │ │ ├── RavenDB-21951.cs │ │ ├── RavenDB-21960.cs │ │ ├── RavenDB-21998.cs │ │ ├── RavenDB-22008.cs │ │ ├── RavenDB-22029.cs │ │ ├── RavenDB-22031.cs │ │ ├── RavenDB-22036.cs │ │ ├── RavenDB-22040.cs │ │ ├── RavenDB-22041.cs │ │ ├── RavenDB-22086.cs │ │ ├── RavenDB-22178.cs │ │ ├── RavenDB-22210.cs │ │ ├── RavenDB-22217.cs │ │ ├── RavenDB-22230.cs │ │ ├── RavenDB-22311.cs │ │ ├── RavenDB-22317.cs │ │ ├── RavenDB-22323.cs │ │ ├── RavenDB-22345.cs │ │ ├── RavenDB-22359.cs │ │ ├── RavenDB-22369.cs │ │ ├── RavenDB-22413.cs │ │ ├── RavenDB-22426.cs │ │ ├── RavenDB-22456.cs │ │ ├── RavenDB-22467.cs │ │ ├── RavenDB-22491.cs │ │ ├── RavenDB-22516.cs │ │ ├── RavenDB-22523.cs │ │ ├── RavenDB-22531.cs │ │ ├── RavenDB-22537.cs │ │ ├── RavenDB-22564.cs │ │ ├── RavenDB-22573.cs │ │ ├── RavenDB-22615.cs │ │ ├── RavenDB-22659.cs │ │ ├── RavenDB-22703.cs │ │ ├── RavenDB-22703_LowLevel.cs │ │ ├── RavenDB-22840.cs │ │ ├── RavenDB-22862.cs │ │ ├── RavenDB-22959.cs │ │ ├── RavenDB-22960.cs │ │ ├── RavenDB-22964.cs │ │ ├── RavenDB-23100.cs │ │ ├── RavenDB-23188.cs │ │ ├── RavenDB-2716.cs │ │ ├── RavenDB-2717.cs │ │ ├── RavenDB-2913.cs │ │ ├── RavenDB-3136.cs │ │ ├── RavenDB-3179.cs │ │ ├── RavenDB-3225.cs │ │ ├── RavenDB-3285.cs │ │ ├── RavenDB-3300.cs │ │ ├── RavenDB-3302.cs │ │ ├── RavenDB-3314.cs │ │ ├── RavenDB-3393.cs │ │ ├── RavenDB-3401.cs │ │ ├── RavenDB-3420.cs │ │ ├── RavenDB-3451.cs │ │ ├── RavenDB-3460.cs │ │ ├── RavenDB-3465.cs │ │ ├── RavenDB-3609.cs │ │ ├── RavenDB-3632.cs │ │ ├── RavenDB-3726.cs │ │ ├── RavenDB-3758.cs │ │ ├── RavenDB-3763.cs │ │ ├── RavenDB-3818.cs │ │ ├── RavenDB-3931.cs │ │ ├── RavenDB-3973.cs │ │ ├── RavenDB-3987.cs │ │ ├── RavenDB-4011.cs │ │ ├── RavenDB-4041.cs │ │ ├── RavenDB-4085.cs │ │ ├── RavenDB-4144.cs │ │ ├── RavenDB-4221.cs │ │ ├── RavenDB-4222.cs │ │ ├── RavenDB-4300.cs │ │ ├── RavenDB-4393.cs │ │ ├── RavenDB-4446.cs │ │ ├── RavenDB-4563.cs │ │ ├── RavenDB-4607.cs │ │ ├── RavenDB-4877.cs │ │ ├── RavenDB-4904.cs │ │ ├── RavenDB-4917.cs │ │ ├── RavenDB-4997.cs │ │ ├── RavenDB-5014.cs │ │ ├── RavenDB-5151.cs │ │ ├── RavenDB-5256.cs │ │ ├── RavenDB-5297.cs │ │ ├── RavenDB-5422.cs │ │ ├── RavenDB-5525.cs │ │ ├── RavenDB-5570.cs │ │ ├── RavenDB-5686.cs │ │ ├── RavenDB-5730.cs │ │ ├── RavenDB-6064.cs │ │ ├── RavenDB-6259.cs │ │ ├── RavenDB-6667.cs │ │ ├── RavenDB-6886.cs │ │ ├── RavenDB-6931.cs │ │ ├── RavenDB-6989.cs │ │ ├── RavenDB-7059.cs │ │ ├── RavenDB-7275.cs │ │ ├── RavenDB-7315.cs │ │ ├── RavenDB-7406.cs │ │ ├── RavenDB-7693.cs │ │ ├── RavenDB-7701.cs │ │ ├── RavenDB-7942.cs │ │ ├── RavenDB-8118.cs │ │ ├── RavenDB-8213.cs │ │ ├── RavenDB-8450.cs │ │ ├── RavenDB-8451.cs │ │ ├── RavenDB-8646.cs │ │ ├── RavenDB-8763.cs │ │ ├── RavenDB-8917.cs │ │ ├── RavenDB-9030.cs │ │ ├── RavenDB-9055.cs │ │ ├── RavenDB-9120.cs │ │ ├── RavenDB-9479.cs │ │ ├── RavenDB-9624.cs │ │ ├── RavenDB-9691.cs │ │ ├── RavenDB-9709.cs │ │ ├── RavenDB-9727.cs │ │ ├── RavenDB-9955.cs │ │ ├── RavenDB-9959.cs │ │ ├── RavenDB-9993.cs │ │ ├── RavenDB1009.cs │ │ ├── RavenDB1019.cs │ │ ├── RavenDB10215.cs │ │ ├── RavenDB1025.cs │ │ ├── RavenDB1229.cs │ │ ├── RavenDB1247.cs │ │ ├── RavenDB1260.cs │ │ ├── RavenDB1261.cs │ │ ├── RavenDB13650.cs │ │ ├── RavenDB13873.cs │ │ ├── RavenDB13918.cs │ │ ├── RavenDB14196.cs │ │ ├── RavenDB14589.cs │ │ ├── RavenDB14590.cs │ │ ├── RavenDB14709.cs │ │ ├── RavenDB14769.cs │ │ ├── RavenDB1508.cs │ │ ├── RavenDB1519.cs │ │ ├── RavenDB2408.cs │ │ ├── RavenDB2568.cs │ │ ├── RavenDB741.cs │ │ ├── RavenDB814.cs │ │ ├── RavenDB815.cs │ │ ├── RavenDB820.cs │ │ ├── RavenDB8384.cs │ │ ├── RavenDB845.cs │ │ ├── RavenDB8655.cs │ │ ├── RavenDB8983.cs │ │ ├── RavenDB8988.cs │ │ ├── RavenDB903.cs │ │ ├── RavenDB9158.cs │ │ ├── RavenDB921.cs │ │ ├── RavenDB934.cs │ │ ├── RavenDB937.cs │ │ ├── RavenDB955.cs │ │ ├── RavenDB957.cs │ │ ├── RavenDB9611.cs │ │ ├── RavenDB982.cs │ │ ├── RavenDB987.cs │ │ ├── RavenDB9927.cs │ │ ├── RavenDB9949.cs │ │ ├── RavenDBBookJavaScriptIndexes.cs │ │ ├── RavenDB_10.cs │ │ ├── RavenDB_10034.cs │ │ ├── RavenDB_10038.cs │ │ ├── RavenDB_10052.cs │ │ ├── RavenDB_10067.cs │ │ ├── RavenDB_10106.cs │ │ ├── RavenDB_10110.cs │ │ ├── RavenDB_10118.cs │ │ ├── RavenDB_10143.cs │ │ ├── RavenDB_10147.cs │ │ ├── RavenDB_10163.cs │ │ ├── RavenDB_10166.cs │ │ ├── RavenDB_10212.cs │ │ ├── RavenDB_10225.cs │ │ ├── RavenDB_10244.cs │ │ ├── RavenDB_10382.cs │ │ ├── RavenDB_10404.cs │ │ ├── RavenDB_10420.cs │ │ ├── RavenDB_10464.cs │ │ ├── RavenDB_10469.cs │ │ ├── RavenDB_10502.cs │ │ ├── RavenDB_10504.cs │ │ ├── RavenDB_10505.cs │ │ ├── RavenDB_10524.cs │ │ ├── RavenDB_10537.cs │ │ ├── RavenDB_10546.cs │ │ ├── RavenDB_10581.cs │ │ ├── RavenDB_10600.cs │ │ ├── RavenDB_10611.cs │ │ ├── RavenDB_10612.cs │ │ ├── RavenDB_10621.cs │ │ ├── RavenDB_10637.cs │ │ ├── RavenDB_10638.cs │ │ ├── RavenDB_10640.cs │ │ ├── RavenDB_10641.cs │ │ ├── RavenDB_10656.cs │ │ ├── RavenDB_10664.cs │ │ ├── RavenDB_10719.cs │ │ ├── RavenDB_10730.cs │ │ ├── RavenDB_10741.cs │ │ ├── RavenDB_10742.cs │ │ ├── RavenDB_10744.cs │ │ ├── RavenDB_10746.cs │ │ ├── RavenDB_10750.cs │ │ ├── RavenDB_10753.cs │ │ ├── RavenDB_10770.cs │ │ ├── RavenDB_10835.cs │ │ ├── RavenDB_10836.cs │ │ ├── RavenDB_10859.cs │ │ ├── RavenDB_10876.cs │ │ ├── RavenDB_10887.cs │ │ ├── RavenDB_10920.cs │ │ ├── RavenDB_10921.cs │ │ ├── RavenDB_10925.cs │ │ ├── RavenDB_10929.cs │ │ ├── RavenDB_10942.cs │ │ ├── RavenDB_10955.cs │ │ ├── RavenDB_10958.cs │ │ ├── RavenDB_10977.cs │ │ ├── RavenDB_10982.cs │ │ ├── RavenDB_10986.cs │ │ ├── RavenDB_10991.cs │ │ ├── RavenDB_10992.cs │ │ ├── RavenDB_10998.cs │ │ ├── RavenDB_11009.cs │ │ ├── RavenDB_11032.cs │ │ ├── RavenDB_11046.cs │ │ ├── RavenDB_11058.cs │ │ ├── RavenDB_11073.cs │ │ ├── RavenDB_11097.cs │ │ ├── RavenDB_11123.cs │ │ ├── RavenDB_11153.cs │ │ ├── RavenDB_11171.cs │ │ ├── RavenDB_11201.cs │ │ ├── RavenDB_11214.cs │ │ ├── RavenDB_11217.cs │ │ ├── RavenDB_11255.cs │ │ ├── RavenDB_11257.cs │ │ ├── RavenDB_11269.cs │ │ ├── RavenDB_11272.cs │ │ ├── RavenDB_11284.cs │ │ ├── RavenDB_11355.cs │ │ ├── RavenDB_11397.cs │ │ ├── RavenDB_11399.cs │ │ ├── RavenDB_11437.cs │ │ ├── RavenDB_11440.cs │ │ ├── RavenDB_11443.cs │ │ ├── RavenDB_11452.cs │ │ ├── RavenDB_11499.cs │ │ ├── RavenDB_11501.cs │ │ ├── RavenDB_11539.cs │ │ ├── RavenDB_11552.cs │ │ ├── RavenDB_11575.cs │ │ ├── RavenDB_11626.cs │ │ ├── RavenDB_11649.cs │ │ ├── RavenDB_11650.cs │ │ ├── RavenDB_11662.cs │ │ ├── RavenDB_11664.cs │ │ ├── RavenDB_11683.cs │ │ ├── RavenDB_11728.cs │ │ ├── RavenDB_11734.cs │ │ ├── RavenDB_11777.cs │ │ ├── RavenDB_11794.cs │ │ ├── RavenDB_11815.cs │ │ ├── RavenDB_11825.cs │ │ ├── RavenDB_11827.cs │ │ ├── RavenDB_11878.cs │ │ ├── RavenDB_11879.cs │ │ ├── RavenDB_11902.cs │ │ ├── RavenDB_11904.cs │ │ ├── RavenDB_11905.cs │ │ ├── RavenDB_11906.cs │ │ ├── RavenDB_11909.cs │ │ ├── RavenDB_11914.cs │ │ ├── RavenDB_11985.cs │ │ ├── RavenDB_12005.cs │ │ ├── RavenDB_12022.cs │ │ ├── RavenDB_12030.cs │ │ ├── RavenDB_12034.cs │ │ ├── RavenDB_12038.cs │ │ ├── RavenDB_12040.cs │ │ ├── RavenDB_12056.cs │ │ ├── RavenDB_12068.cs │ │ ├── RavenDB_12082.cs │ │ ├── RavenDB_12127.cs │ │ ├── RavenDB_12128.cs │ │ ├── RavenDB_12169.cs │ │ ├── RavenDB_12193.cs │ │ ├── RavenDB_12194.cs │ │ ├── RavenDB_12207.cs │ │ ├── RavenDB_12223.cs │ │ ├── RavenDB_12227.cs │ │ ├── RavenDB_12233.cs │ │ ├── RavenDB_12240.cs │ │ ├── RavenDB_12250.cs │ │ ├── RavenDB_12257.cs │ │ ├── RavenDB_12259.cs │ │ ├── RavenDB_12266.cs │ │ ├── RavenDB_12269.cs │ │ ├── RavenDB_12293.cs │ │ ├── RavenDB_12294.cs │ │ ├── RavenDB_12301.cs │ │ ├── RavenDB_12302.cs │ │ ├── RavenDB_12333.cs │ │ ├── RavenDB_12334.cs │ │ ├── RavenDB_12345.cs │ │ ├── RavenDB_12346.cs │ │ ├── RavenDB_12355.cs │ │ ├── RavenDB_12366.cs │ │ ├── RavenDB_12372.cs │ │ ├── RavenDB_12383.cs │ │ ├── RavenDB_12403.cs │ │ ├── RavenDB_12410.cs │ │ ├── RavenDB_12427.cs │ │ ├── RavenDB_12450.cs │ │ ├── RavenDB_12490.cs │ │ ├── RavenDB_12510.cs │ │ ├── RavenDB_1251_1.cs │ │ ├── RavenDB_1251_2.cs │ │ ├── RavenDB_12557.cs │ │ ├── RavenDB_12584.cs │ │ ├── RavenDB_12601.cs │ │ ├── RavenDB_12646.cs │ │ ├── RavenDB_12649.cs │ │ ├── RavenDB_12650.cs │ │ ├── RavenDB_12652.cs │ │ ├── RavenDB_12657.cs │ │ ├── RavenDB_12661.cs │ │ ├── RavenDB_12665.cs │ │ ├── RavenDB_12725_Raven.cs │ │ ├── RavenDB_12790.cs │ │ ├── RavenDB_12816.cs │ │ ├── RavenDB_12826.cs │ │ ├── RavenDB_12859.cs │ │ ├── RavenDB_12867.cs │ │ ├── RavenDB_12870.cs │ │ ├── RavenDB_12891.cs │ │ ├── RavenDB_12931.cs │ │ ├── RavenDB_12943.cs │ │ ├── RavenDB_12985.cs │ │ ├── RavenDB_13006.cs │ │ ├── RavenDB_13034.cs │ │ ├── RavenDB_13161.cs │ │ ├── RavenDB_13178.cs │ │ ├── RavenDB_13195.cs │ │ ├── RavenDB_13203.cs │ │ ├── RavenDB_13219.cs │ │ ├── RavenDB_13252.cs │ │ ├── RavenDB_13284.cs │ │ ├── RavenDB_13291.cs │ │ ├── RavenDB_13293.cs │ │ ├── RavenDB_13315.cs │ │ ├── RavenDB_13335.cs │ │ ├── RavenDB_13363.cs │ │ ├── RavenDB_13387.cs │ │ ├── RavenDB_13432.cs │ │ ├── RavenDB_13456.cs │ │ ├── RavenDB_13457.cs │ │ ├── RavenDB_13478.cs │ │ ├── RavenDB_13488.cs │ │ ├── RavenDB_13490.cs │ │ ├── RavenDB_13508.cs │ │ ├── RavenDB_13525.cs │ │ ├── RavenDB_13563.cs │ │ ├── RavenDB_13636.cs │ │ ├── RavenDB_13644.cs │ │ ├── RavenDB_13696.cs │ │ ├── RavenDB_13709.cs │ │ ├── RavenDB_13732.cs │ │ ├── RavenDB_13749.cs │ │ ├── RavenDB_13759.cs │ │ ├── RavenDB_13762.cs │ │ ├── RavenDB_1379.cs │ │ ├── RavenDB_13796.cs │ │ ├── RavenDB_13813.cs │ │ ├── RavenDB_13841.cs │ │ ├── RavenDB_13866.cs │ │ ├── RavenDB_13868.cs │ │ ├── RavenDB_13870.cs │ │ ├── RavenDB_13890.cs │ │ ├── RavenDB_13972.cs │ │ ├── RavenDB_13972_32_bits.cs │ │ ├── RavenDB_13972_encrypted.cs │ │ ├── RavenDB_13979.cs │ │ ├── RavenDB_13983.cs │ │ ├── RavenDB_14001.cs │ │ ├── RavenDB_14005.cs │ │ ├── RavenDB_14006.cs │ │ ├── RavenDB_14015.cs │ │ ├── RavenDB_14034.cs │ │ ├── RavenDB_14041.cs │ │ ├── RavenDB_14068.cs │ │ ├── RavenDB_14077.cs │ │ ├── RavenDB_14084.cs │ │ ├── RavenDB_14085.cs │ │ ├── RavenDB_14087.cs │ │ ├── RavenDB_14088.cs │ │ ├── RavenDB_14102.cs │ │ ├── RavenDB_14109.cs │ │ ├── RavenDB_14116.cs │ │ ├── RavenDB_14153.cs │ │ ├── RavenDB_14176.cs │ │ ├── RavenDB_14178.cs │ │ ├── RavenDB_14230.cs │ │ ├── RavenDB_14234.cs │ │ ├── RavenDB_14235.cs │ │ ├── RavenDB_14269.cs │ │ ├── RavenDB_14327.cs │ │ ├── RavenDB_14363.cs │ │ ├── RavenDB_1443.cs │ │ ├── RavenDB_14448.cs │ │ ├── RavenDB_14450.cs │ │ ├── RavenDB_14461.cs │ │ ├── RavenDB_14527.cs │ │ ├── RavenDB_14542.cs │ │ ├── RavenDB_14619.cs │ │ ├── RavenDB_14623.cs │ │ ├── RavenDB_14641.cs │ │ ├── RavenDB_14654.cs │ │ ├── RavenDB_1466.cs │ │ ├── RavenDB_14661.cs │ │ ├── RavenDB_14665.cs │ │ ├── RavenDB_14687.cs │ │ ├── RavenDB_14703.cs │ │ ├── RavenDB_14712.cs │ │ ├── RavenDB_14784.cs │ │ ├── RavenDB_14809.cs │ │ ├── RavenDB_14826.cs │ │ ├── RavenDB_14839.cs │ │ ├── RavenDB_14881.cs │ │ ├── RavenDB_14917.cs │ │ ├── RavenDB_14919.cs │ │ ├── RavenDB_14926.cs │ │ ├── RavenDB_14932.cs │ │ ├── RavenDB_14939.cs │ │ ├── RavenDB_14952.cs │ │ ├── RavenDB_14986.cs │ │ ├── RavenDB_14995.cs │ │ ├── RavenDB_15019.cs │ │ ├── RavenDB_15046.cs │ │ ├── RavenDB_15049.cs │ │ ├── RavenDB_15076.cs │ │ ├── RavenDB_15097.cs │ │ ├── RavenDB_15109.cs │ │ ├── RavenDB_15129.cs │ │ ├── RavenDB_15134.cs │ │ ├── RavenDB_15163.cs │ │ ├── RavenDB_15166.cs │ │ ├── RavenDB_15215.cs │ │ ├── RavenDB_15222.cs │ │ ├── RavenDB_15223.cs │ │ ├── RavenDB_15226.cs │ │ ├── RavenDB_15237.cs │ │ ├── RavenDB_15240.cs │ │ ├── RavenDB_15282.cs │ │ ├── RavenDB_15313.cs │ │ ├── RavenDB_15409.cs │ │ ├── RavenDB_15430.cs │ │ ├── RavenDB_15437.cs │ │ ├── RavenDB_15450.cs │ │ ├── RavenDB_15460.cs │ │ ├── RavenDB_15468.cs │ │ ├── RavenDB_15477.cs │ │ ├── RavenDB_15493.cs │ │ ├── RavenDB_15512.cs │ │ ├── RavenDB_15521.cs │ │ ├── RavenDB_15538.cs │ │ ├── RavenDB_15554.cs │ │ ├── RavenDB_15564.cs │ │ ├── RavenDB_15568.cs │ │ ├── RavenDB_15690.cs │ │ ├── RavenDB_15700.cs │ │ ├── RavenDB_15746.cs │ │ ├── RavenDB_15746_ThrottledManualResetEventSlimTests.cs │ │ ├── RavenDB_15753.cs │ │ ├── RavenDB_15764.cs │ │ ├── RavenDB_15772_TypeConverter_Fail_To_Convert_Char.cs │ │ ├── RavenDB_15825.cs │ │ ├── RavenDB_15856.cs │ │ ├── RavenDB_15866.cs │ │ ├── RavenDB_15901.cs │ │ ├── RavenDB_15904.cs │ │ ├── RavenDB_15911.cs │ │ ├── RavenDB_15930.cs │ │ ├── RavenDB_15935.cs │ │ ├── RavenDB_15944.cs │ │ ├── RavenDB_15988.cs │ │ ├── RavenDB_15997.cs │ │ ├── RavenDB_16033.cs │ │ ├── RavenDB_16042.cs │ │ ├── RavenDB_16050.cs │ │ ├── RavenDB_16079.cs │ │ ├── RavenDB_16086.cs │ │ ├── RavenDB_16135.cs │ │ ├── RavenDB_16145.cs │ │ ├── RavenDB_16146.cs │ │ ├── RavenDB_16147.cs │ │ ├── RavenDB_16156.cs │ │ ├── RavenDB_16193.cs │ │ ├── RavenDB_16235.cs │ │ ├── RavenDB_16236.cs │ │ ├── RavenDB_16262.cs │ │ ├── RavenDB_16265.cs │ │ ├── RavenDB_16293.cs │ │ ├── RavenDB_16301.cs │ │ ├── RavenDB_16303.cs │ │ ├── RavenDB_16321.cs │ │ ├── RavenDB_16328_Analyzers.cs │ │ ├── RavenDB_16328_Sorters.cs │ │ ├── RavenDB_16334.cs │ │ ├── RavenDB_16336.cs │ │ ├── RavenDB_16346.cs │ │ ├── RavenDB_16350.cs │ │ ├── RavenDB_16353.cs │ │ ├── RavenDB_16356.cs │ │ ├── RavenDB_16358.cs │ │ ├── RavenDB_16367.cs │ │ ├── RavenDB_16371.cs │ │ ├── RavenDB_16378.cs │ │ ├── RavenDB_16378_LastModifiedDate.cs │ │ ├── RavenDB_16378_Replication_NRE.cs │ │ ├── RavenDB_16412.cs │ │ ├── RavenDB_16412_FifoSemaphoreTests.cs │ │ ├── RavenDB_16439.cs │ │ ├── RavenDB_16451.cs │ │ ├── RavenDB_16511.cs │ │ ├── RavenDB_16512.cs │ │ ├── RavenDB_16537.cs │ │ ├── RavenDB_16656.cs │ │ ├── RavenDB_16705.cs │ │ ├── RavenDB_16726.cs │ │ ├── RavenDB_16777.cs │ │ ├── RavenDB_16808cs.cs │ │ ├── RavenDB_16818.cs │ │ ├── RavenDB_16850.cs │ │ ├── RavenDB_16895.cs │ │ ├── RavenDB_16929.cs │ │ ├── RavenDB_16950.cs │ │ ├── RavenDB_16956.cs │ │ ├── RavenDB_16962.cs │ │ ├── RavenDB_16966.cs │ │ ├── RavenDB_16985.cs │ │ ├── RavenDB_16994.cs │ │ ├── RavenDB_17006.cs │ │ ├── RavenDB_17018.cs │ │ ├── RavenDB_17046.cs │ │ ├── RavenDB_17130.cs │ │ ├── RavenDB_17172.cs │ │ ├── RavenDB_17177.cs │ │ ├── RavenDB_17196.cs │ │ ├── RavenDB_17200.cs │ │ ├── RavenDB_17231.cs │ │ ├── RavenDB_17237.cs │ │ ├── RavenDB_17260.cs │ │ ├── RavenDB_17309.cs │ │ ├── RavenDB_17312.cs │ │ ├── RavenDB_17317.cs │ │ ├── RavenDB_17353.cs │ │ ├── RavenDB_17373.cs │ │ ├── RavenDB_17423.cs │ │ ├── RavenDB_17543.cs │ │ ├── RavenDB_17572.cs │ │ ├── RavenDB_17577.cs │ │ ├── RavenDB_17604.cs │ │ ├── RavenDB_17617.cs │ │ ├── RavenDB_17626.cs │ │ ├── RavenDB_17678.cs │ │ ├── RavenDB_17753.cs │ │ ├── RavenDB_17835.cs │ │ ├── RavenDB_17973.cs │ │ ├── RavenDB_17998.cs │ │ ├── RavenDB_18331.cs │ │ ├── RavenDB_18357.cs │ │ ├── RavenDB_18364.cs │ │ ├── RavenDB_18414.cs │ │ ├── RavenDB_18473.cs │ │ ├── RavenDB_18490.cs │ │ ├── RavenDB_18496.cs │ │ ├── RavenDB_18588.cs │ │ ├── RavenDB_18648.cs │ │ ├── RavenDB_18663.cs │ │ ├── RavenDB_18687.cs │ │ ├── RavenDB_18740.cs │ │ ├── RavenDB_18759.cs │ │ ├── RavenDB_18762.cs │ │ ├── RavenDB_18768.cs │ │ ├── RavenDB_18938.cs │ │ ├── RavenDB_18950.cs │ │ ├── RavenDB_19002.cs │ │ ├── RavenDB_19033.cs │ │ ├── RavenDB_19049.cs │ │ ├── RavenDB_19083.cs │ │ ├── RavenDB_19239.cs │ │ ├── RavenDB_19266.cs │ │ ├── RavenDB_19301.cs │ │ ├── RavenDB_19361.cs │ │ ├── RavenDB_19421_2.cs │ │ ├── RavenDB_19440.cs │ │ ├── RavenDB_19449.cs │ │ ├── RavenDB_19459.cs │ │ ├── RavenDB_19474.cs │ │ ├── RavenDB_19487.cs │ │ ├── RavenDB_19525.cs │ │ ├── RavenDB_19529.cs │ │ ├── RavenDB_19545.cs │ │ ├── RavenDB_19546.cs │ │ ├── RavenDB_19548.cs │ │ ├── RavenDB_19557.cs │ │ ├── RavenDB_19559.cs │ │ ├── RavenDB_19560.cs │ │ ├── RavenDB_19598.cs │ │ ├── RavenDB_1962.cs │ │ ├── RavenDB_19693.cs │ │ ├── RavenDB_19741.cs │ │ ├── RavenDB_19743.cs │ │ ├── RavenDB_19830.cs │ │ ├── RavenDB_19900.cs │ │ ├── RavenDB_19913.cs │ │ ├── RavenDB_19948.cs │ │ ├── RavenDB_20039.cs │ │ ├── RavenDB_20059.cs │ │ ├── RavenDB_20070.cs │ │ ├── RavenDB_20079.cs │ │ ├── RavenDB_20084.cs │ │ ├── RavenDB_20150.cs │ │ ├── RavenDB_20202.cs │ │ ├── RavenDB_20206.cs │ │ ├── RavenDB_20237.cs │ │ ├── RavenDB_20286.cs │ │ ├── RavenDB_20416.cs │ │ ├── RavenDB_20608.cs │ │ ├── RavenDB_20628.cs │ │ ├── RavenDB_20656.cs │ │ ├── RavenDB_20673.cs │ │ ├── RavenDB_20678.cs │ │ ├── RavenDB_20684.cs │ │ ├── RavenDB_20708.cs │ │ ├── RavenDB_20760.cs │ │ ├── RavenDB_20831.cs │ │ ├── RavenDB_20843.cs │ │ ├── RavenDB_20883.cs │ │ ├── RavenDB_20914.cs │ │ ├── RavenDB_20915.cs │ │ ├── RavenDB_20927.cs │ │ ├── RavenDB_20955.cs │ │ ├── RavenDB_20978.cs │ │ ├── RavenDB_20987.cs │ │ ├── RavenDB_20990.cs │ │ ├── RavenDB_21043.cs │ │ ├── RavenDB_21225.cs │ │ ├── RavenDB_21233.cs │ │ ├── RavenDB_2124.cs │ │ ├── RavenDB_21263.cs │ │ ├── RavenDB_21264.cs │ │ ├── RavenDB_21338.cs │ │ ├── RavenDB_21339.cs │ │ ├── RavenDB_21342.cs │ │ ├── RavenDB_21379.cs │ │ ├── RavenDB_21484.cs │ │ ├── RavenDB_21498.cs │ │ ├── RavenDB_21501.cs │ │ ├── RavenDB_21523.cs │ │ ├── RavenDB_21525.cs │ │ ├── RavenDB_21553.cs │ │ ├── RavenDB_21575.cs │ │ ├── RavenDB_21681.cs │ │ ├── RavenDB_21683.cs │ │ ├── RavenDB_21713.cs │ │ ├── RavenDB_21780.cs │ │ ├── RavenDB_2183.cs │ │ ├── RavenDB_21859.cs │ │ ├── RavenDB_21866.cs │ │ ├── RavenDB_21889.cs │ │ ├── RavenDB_21946.cs │ │ ├── RavenDB_21995.cs │ │ ├── RavenDB_22013.cs │ │ ├── RavenDB_2205.cs │ │ ├── RavenDB_2209.cs │ │ ├── RavenDB_22107.cs │ │ ├── RavenDB_22110.cs │ │ ├── RavenDB_22128.cs │ │ ├── RavenDB_22150.cs │ │ ├── RavenDB_22176.cs │ │ ├── RavenDB_22195.cs │ │ ├── RavenDB_22196.cs │ │ ├── RavenDB_22253.cs │ │ ├── RavenDB_2233.cs │ │ ├── RavenDB_22346.cs │ │ ├── RavenDB_22363.cs │ │ ├── RavenDB_22406.cs │ │ ├── RavenDB_22410.cs │ │ ├── RavenDB_22463.cs │ │ ├── RavenDB_22477.cs │ │ ├── RavenDB_22498.cs │ │ ├── RavenDB_22504.cs │ │ ├── RavenDB_22534.cs │ │ ├── RavenDB_22679_GH_Discussions_18969.cs │ │ ├── RavenDB_22709.cs │ │ ├── RavenDB_22739.cs │ │ ├── RavenDB_22750.cs │ │ ├── RavenDB_22753.cs │ │ ├── RavenDB_22824.cs │ │ ├── RavenDB_22829_DeferrableTimerTests.cs │ │ ├── RavenDB_22835.cs │ │ ├── RavenDB_22872.cs │ │ ├── RavenDB_22874.cs │ │ ├── RavenDB_22937.cs │ │ ├── RavenDB_23091.cs │ │ ├── RavenDB_23132.cs │ │ ├── RavenDB_2314.cs │ │ ├── RavenDB_23336.cs │ │ ├── RavenDB_2424.cs │ │ ├── RavenDB_2486.cs │ │ ├── RavenDB_2514.cs │ │ ├── RavenDB_2607.cs │ │ ├── RavenDB_2609.cs │ │ ├── RavenDB_2623.cs │ │ ├── RavenDB_2670.cs │ │ ├── RavenDB_2672.cs │ │ ├── RavenDB_2762.cs │ │ ├── RavenDB_2854.cs │ │ ├── RavenDB_2867.cs │ │ ├── RavenDB_2877.cs │ │ ├── RavenDB_2907.cs │ │ ├── RavenDB_2911.cs │ │ ├── RavenDB_2936.cs │ │ ├── RavenDB_2944.cs │ │ ├── RavenDB_295.cs │ │ ├── RavenDB_2955.cs │ │ ├── RavenDB_2984.cs │ │ ├── RavenDB_299.cs │ │ ├── RavenDB_2994.cs │ │ ├── RavenDB_3013.cs │ │ ├── RavenDB_3145.cs │ │ ├── RavenDB_3166.cs │ │ ├── RavenDB_3207.cs │ │ ├── RavenDB_3222.cs │ │ ├── RavenDB_3232.cs │ │ ├── RavenDB_3237.cs │ │ ├── RavenDB_3248.cs │ │ ├── RavenDB_3264.cs │ │ ├── RavenDB_3276.cs │ │ ├── RavenDB_3326.cs │ │ ├── RavenDB_3344.cs │ │ ├── RavenDB_3365.cs │ │ ├── RavenDB_3375.cs │ │ ├── RavenDB_3381.cs │ │ ├── RavenDB_3417.cs │ │ ├── RavenDB_3442.cs │ │ ├── RavenDB_3462.cs │ │ ├── RavenDB_3484.cs │ │ ├── RavenDB_3501.cs │ │ ├── RavenDB_3525.cs │ │ ├── RavenDB_3543.cs │ │ ├── RavenDB_3620.cs │ │ ├── RavenDB_3625.cs │ │ ├── RavenDB_3646.cs │ │ ├── RavenDB_3647.cs │ │ ├── RavenDB_3659.cs │ │ ├── RavenDB_3744.cs │ │ ├── RavenDB_381.cs │ │ ├── RavenDB_3864.cs │ │ ├── RavenDB_3878.cs │ │ ├── RavenDB_3928.cs │ │ ├── RavenDB_3929.cs │ │ ├── RavenDB_4053.cs │ │ ├── RavenDB_4091.cs │ │ ├── RavenDB_4110.cs │ │ ├── RavenDB_4147.cs │ │ ├── RavenDB_421.cs │ │ ├── RavenDB_422.cs │ │ ├── RavenDB_4241.cs │ │ ├── RavenDB_4388.cs │ │ ├── RavenDB_4420.cs │ │ ├── RavenDB_4461.cs │ │ ├── RavenDB_4636.cs │ │ ├── RavenDB_4645.cs │ │ ├── RavenDB_4708.cs │ │ ├── RavenDB_4708_Conventions.cs │ │ ├── RavenDB_4729.cs │ │ ├── RavenDB_478.cs │ │ ├── RavenDB_483.cs │ │ ├── RavenDB_4903.cs │ │ ├── RavenDB_4916.cs │ │ ├── RavenDB_4918.cs │ │ ├── RavenDB_4983.cs │ │ ├── RavenDB_505.cs │ │ ├── RavenDB_5051.cs │ │ ├── RavenDB_514.cs │ │ ├── RavenDB_5418.cs │ │ ├── RavenDB_542 .cs │ │ ├── RavenDB_5434.cs │ │ ├── RavenDB_5435.cs │ │ ├── RavenDB_5489.cs │ │ ├── RavenDB_5514.cs │ │ ├── RavenDB_554.cs │ │ ├── RavenDB_556.cs │ │ ├── RavenDB_5615.cs │ │ ├── RavenDB_5617.cs │ │ ├── RavenDB_5669.cs │ │ ├── RavenDB_5761.cs │ │ ├── RavenDB_579.cs │ │ ├── RavenDB_5824.cs │ │ ├── RavenDB_5919.cs │ │ ├── RavenDB_5968.cs │ │ ├── RavenDB_5998.cs │ │ ├── RavenDB_6064.cs │ │ ├── RavenDB_6095.cs │ │ ├── RavenDB_6099.cs │ │ ├── RavenDB_6131.cs │ │ ├── RavenDB_6199.cs │ │ ├── RavenDB_6278.cs │ │ ├── RavenDB_6285.cs │ │ ├── RavenDB_6292.cs │ │ ├── RavenDB_6305.cs │ │ ├── RavenDB_6345.cs │ │ ├── RavenDB_6369.cs │ │ ├── RavenDB_6414.cs │ │ ├── RavenDB_6415.cs │ │ ├── RavenDB_6427.cs │ │ ├── RavenDB_644.cs │ │ ├── RavenDB_6558.cs │ │ ├── RavenDB_6596.cs │ │ ├── RavenDB_6665.cs │ │ ├── RavenDB_6893.cs │ │ ├── RavenDB_6964.cs │ │ ├── RavenDB_6967.cs │ │ ├── RavenDB_7028.cs │ │ ├── RavenDB_7043.cs │ │ ├── RavenDB_7078.cs │ │ ├── RavenDB_7136.cs │ │ ├── RavenDB_7162.cs │ │ ├── RavenDB_7170.cs │ │ ├── RavenDB_72.cs │ │ ├── RavenDB_7253.cs │ │ ├── RavenDB_7281.cs │ │ ├── RavenDB_7322.cs │ │ ├── RavenDB_7498.cs │ │ ├── RavenDB_7542.cs │ │ ├── RavenDB_7589.cs │ │ ├── RavenDB_7674.cs │ │ ├── RavenDB_7912.cs │ │ ├── RavenDB_7919.cs │ │ ├── RavenDB_7940.cs │ │ ├── RavenDB_7996.cs │ │ ├── RavenDB_8026.cs │ │ ├── RavenDB_8031.cs │ │ ├── RavenDB_8044.cs │ │ ├── RavenDB_8063.cs │ │ ├── RavenDB_8107.cs │ │ ├── RavenDB_8161.cs │ │ ├── RavenDB_8206.cs │ │ ├── RavenDB_8217.cs │ │ ├── RavenDB_8220.cs │ │ ├── RavenDB_8240.cs │ │ ├── RavenDB_8254.cs │ │ ├── RavenDB_8267.cs │ │ ├── RavenDB_8288.cs │ │ ├── RavenDB_8318.cs │ │ ├── RavenDB_8320.cs │ │ ├── RavenDB_8328.cs │ │ ├── RavenDB_8346.cs │ │ ├── RavenDB_8355.cs │ │ ├── RavenDB_8367.cs │ │ ├── RavenDB_8369.cs │ │ ├── RavenDB_8397.cs │ │ ├── RavenDB_8417.cs │ │ ├── RavenDB_8427.cs │ │ ├── RavenDB_8448.cs │ │ ├── RavenDB_8462.cs │ │ ├── RavenDB_8469.cs │ │ ├── RavenDB_8498.cs │ │ ├── RavenDB_8544.cs │ │ ├── RavenDB_8603.cs │ │ ├── RavenDB_8623.cs │ │ ├── RavenDB_8651.cs │ │ ├── RavenDB_8710.cs │ │ ├── RavenDB_8728.cs │ │ ├── RavenDB_8741.cs │ │ ├── RavenDB_8746.cs │ │ ├── RavenDB_8773.cs │ │ ├── RavenDB_8782.cs │ │ ├── RavenDB_8799.cs │ │ ├── RavenDB_8805.cs │ │ ├── RavenDB_8826.cs │ │ ├── RavenDB_8847.cs │ │ ├── RavenDB_8891.cs │ │ ├── RavenDB_8892.cs │ │ ├── RavenDB_8928.cs │ │ ├── RavenDB_8929.cs │ │ ├── RavenDB_8956.cs │ │ ├── RavenDB_8959.cs │ │ ├── RavenDB_9082.cs │ │ ├── RavenDB_9096.cs │ │ ├── RavenDB_9103.cs │ │ ├── RavenDB_9104.cs │ │ ├── RavenDB_9106.cs │ │ ├── RavenDB_9181.cs │ │ ├── RavenDB_9269.cs │ │ ├── RavenDB_9276.cs │ │ ├── RavenDB_9381.cs │ │ ├── RavenDB_9481.cs │ │ ├── RavenDB_9492.cs │ │ ├── RavenDB_9519.cs │ │ ├── RavenDB_9553.cs │ │ ├── RavenDB_9576.cs │ │ ├── RavenDB_9584.cs │ │ ├── RavenDB_9587.cs │ │ ├── RavenDB_9609.cs │ │ ├── RavenDB_9620.cs │ │ ├── RavenDB_9621.cs │ │ ├── RavenDB_9645.cs │ │ ├── RavenDB_9676.cs │ │ ├── RavenDB_9679.cs │ │ ├── RavenDB_9680.cs │ │ ├── RavenDB_9682.cs │ │ ├── RavenDB_9684.cs │ │ ├── RavenDB_9693.cs │ │ ├── RavenDB_9710.cs │ │ ├── RavenDB_9721.cs │ │ ├── RavenDB_9723.cs │ │ ├── RavenDB_9745.cs │ │ ├── RavenDB_9889.cs │ │ ├── RavenDB_9895.cs │ │ ├── RavenDB_9912.cs │ │ ├── RavenDB_9936.cs │ │ ├── RavenDB_9995.cs │ │ ├── RavenDb-1934.cs │ │ ├── RavenDb1962.cs │ │ ├── RavenDb4583.cs │ │ ├── RavenDb6055.cs │ │ ├── RavenDb827.cs │ │ ├── RavenDb_2215.cs │ │ ├── RavenDb_4706.cs │ │ ├── Ravendb_334.cs │ │ ├── RravenDB-16949.cs │ │ ├── SlowBasicAutoMapReduceIndexing.cs │ │ └── ThousandsSeparatorRavenDb8416.cs │ ├── MailingList │ │ ├── AaronSt.cs │ │ ├── Accounts.cs │ │ ├── AddMapForAllTest.cs │ │ ├── Adrian.cs │ │ ├── Afif.cs │ │ ├── AggresiveCacheWithLazy.cs │ │ ├── Alexander.cs │ │ ├── AlexanderLapa.cs │ │ ├── AlexanderZeitler.cs │ │ ├── Algirdas.cs │ │ ├── AllDocsSubscription.cs │ │ ├── AllPropertiesIndex.cs │ │ ├── Andrej.cs │ │ ├── Andrew.cs │ │ ├── AnyBugTest.cs │ │ ├── Apo │ │ │ └── Lazy.cs │ │ ├── Arun.cs │ │ ├── Asger2.cs │ │ ├── AsyncSpatial.cs │ │ ├── AutoGenIndexLinqQuery.cs │ │ ├── BadQuery.cs │ │ ├── Bassler.cs │ │ ├── Benjamin.cs │ │ ├── BigIntegerUsage.cs │ │ ├── BooleanAndDateTimeNullables.cs │ │ ├── BooleanCollection.cs │ │ ├── BoundingBox.cs │ │ ├── Brett.cs │ │ ├── BrianVallelunga.cs │ │ ├── Bruno.cs │ │ ├── BuildStarted.cs │ │ ├── CanExcludeNullItems.cs │ │ ├── CanFacetOnList.cs │ │ ├── CanHaveNullableDoubleProperty.cs │ │ ├── CanLoadDocumentArray.cs │ │ ├── CanQueryOnTrue.cs │ │ ├── CanRetrieveFacetCountsOfQueryResults.cs │ │ ├── CanRetrieveFacetCountsOfQueryResults2.cs │ │ ├── Chirea.cs │ │ ├── Chirea2.cs │ │ ├── ChrisMarisic.cs │ │ ├── Class7.cs │ │ ├── CoalescingOperatorWithStringARray.cs │ │ ├── ComplexIndexMerge.cs │ │ ├── CompoundOrQueryWithOrderByDescending .cs │ │ ├── ConcurrencyTests.cs │ │ ├── CustomAnalyzerStartsWithFailure.cs │ │ ├── CustomIdInIndexCreationTask.cs │ │ ├── Daniel.cs │ │ ├── DataSetIndexTest.cs │ │ ├── DateTimeOffsetIssues.cs │ │ ├── DayOfWeekTest.cs │ │ ├── DecimalQueries.cs │ │ ├── DeserializationToObjectTests.cs │ │ ├── DicWithDateTimeKeys.cs │ │ ├── DifferentKeysWithTheSameFirst127CharactersAreDifferent.cs │ │ ├── DistinctBug.cs │ │ ├── DistinctWithPaging.cs │ │ ├── Dmitry.cs │ │ ├── DocumentQueryIncludeAndStreamTest.cs │ │ ├── DynamicFieldNoAnalysisStillAnalyzesTest.cs │ │ ├── DynamicFieldSorting.cs │ │ ├── DynamicObjectTests.cs │ │ ├── DynamicQueryIndexSelection.cs │ │ ├── EnumAsInts.cs │ │ ├── EnumInIndexDef.cs │ │ ├── Enzmann.cs │ │ ├── EtagIssue.cs │ │ ├── Everett │ │ │ ├── CanReadBytes.cs │ │ │ └── DocumentWithBytes.txt │ │ ├── Everett616.cs │ │ ├── ExactNotUsedInIndexing.cs │ │ ├── FacetCountTest.cs │ │ ├── FacetHits.cs │ │ ├── FacetQueryNotCorrectWithDefaultFieldSpecified.cs │ │ ├── FacetsMultipleAggregation.cs │ │ ├── FailingIndex.cs │ │ ├── FailingProjection.cs │ │ ├── Failing_lucene_query_where_in_tests.cs │ │ ├── FilteredIndexTest.cs │ │ ├── FirstOrDefaultNullableDate.cs │ │ ├── FormOpensByDateAndMediaSourceAndVersionTest.cs │ │ ├── FragmentFail.cs │ │ ├── Gal.cs │ │ ├── Garrett.cs │ │ ├── Georgiosd.cs │ │ ├── Groenewoud.cs │ │ ├── GuidProjection.cs │ │ ├── Henrik.cs │ │ ├── HierarchicalInheritanceIndexing.cs │ │ ├── HierarchyTests.cs │ │ ├── Holt.cs │ │ ├── IdComesBackLowerCase.cs │ │ ├── IdentityUserDeserialization.cs │ │ ├── IdsaTest.cs │ │ ├── InIssues.cs │ │ ├── InQueries.cs │ │ ├── IndexCompilation.cs │ │ ├── IndexMerging.cs │ │ ├── IndexMetadata.cs │ │ ├── IndexTest.cs │ │ ├── IndexTest2.cs │ │ ├── IndexWhereClause .cs │ │ ├── IndexWithEnumNullableFailingUnitTest.cs │ │ ├── IndexWithUnion.cs │ │ ├── IndexWithWhere.cs │ │ ├── IndexesIgnoreNewtonsoftJsonPropertyAttributes.cs │ │ ├── ItemsBySetIdIndexTests.cs │ │ ├── Jabber │ │ │ └── Games.cs │ │ ├── Joel.cs │ │ ├── JoelAsync.cs │ │ ├── JohanNilsson.cs │ │ ├── Johnson.cs │ │ ├── Jon.cs │ │ ├── Jonas.cs │ │ ├── Jordan.cs │ │ ├── Jorre.cs │ │ ├── JustFacetSearch.cs │ │ ├── Justin.cs │ │ ├── Kijana.cs │ │ ├── Kushnir.cs │ │ ├── Kwoodard.cs │ │ ├── LargeQuery.cs │ │ ├── Lars.cs │ │ ├── LateBoundValue.cs │ │ ├── LazyAggregationEmbedded.cs │ │ ├── LazyCount.cs │ │ ├── LazyEncoding.cs │ │ ├── LazyStats.cs │ │ ├── LazyTests.cs │ │ ├── LazyWithIncludes.cs │ │ ├── Lindblom.cs │ │ ├── LinqInExtensionTests.cs │ │ ├── ListCount.cs │ │ ├── LoadAllStartingWith.cs │ │ ├── LongIds.cs │ │ ├── LowerCaseIdIndexTest.cs │ │ ├── LuceneQueryHighlightTest.cs │ │ ├── LuceneScoreTests.cs │ │ ├── LuceneSearchSample.cs │ │ ├── LuceneSortDouble.cs │ │ ├── MapLongTests.cs │ │ ├── Mare.cs │ │ ├── Mark2.cs │ │ ├── MattJohnson.cs │ │ ├── Maverix2.cs │ │ ├── Maxime.cs │ │ ├── Maxime2.cs │ │ ├── Micha.cs │ │ ├── MissingIncludes.cs │ │ ├── MoreLikeThisEvaluation.cs │ │ ├── Mouhong.cs │ │ ├── MultiMapIndexQueryTests.cs │ │ ├── MultiMapIndexWithDynamicFieldsTests.cs │ │ ├── MultipleLoad.cs │ │ ├── Nick.cs │ │ ├── NicolasGarfinkiel.cs │ │ ├── NimaHa.cs │ │ ├── NoTracking.cs │ │ ├── NullableBoolQuery.cs │ │ ├── NullableEnums.cs │ │ ├── NullableGuidIndexTest.cs │ │ ├── NullableInIndex.cs │ │ ├── NullableSorting.cs │ │ ├── Nullables.cs │ │ ├── Oguzhntopcu.cs │ │ ├── OrderByProjectSameField.cs │ │ ├── OrderByValueTypeCast.cs │ │ ├── Oregon.cs │ │ ├── Oru.cs │ │ ├── PeterBalzli.cs │ │ ├── Pfeffer.cs │ │ ├── PhilJones │ │ │ ├── PhilJones.cs │ │ │ └── Projections.cs │ │ ├── PhilJones_Search.cs │ │ ├── PhilJones_SelectMany_NoResults.cs │ │ ├── ProjectingIdFromNestedClass.cs │ │ ├── ProjectioOfMissingProp.cs │ │ ├── ProjectionShouldNotLoadDocument.cs │ │ ├── ProjectionTests.cs │ │ ├── QueryIn.cs │ │ ├── QueryNotAnyTest.cs │ │ ├── QueryOnItems.cs │ │ ├── QueryWhereInTests.cs │ │ ├── QueryingIntArray.cs │ │ ├── QueryingOnValueWithMultipleMinusAnalyzed .cs │ │ ├── QueryingOn_A_Prefix.cs │ │ ├── QueryingUsingOr.cs │ │ ├── RacielRod.cs │ │ ├── Random.cs │ │ ├── RangeQueriesOverSum.cs │ │ ├── RavenAsyncTest.cs │ │ ├── RavenCannotQueryAgainstFloatProperty.cs │ │ ├── RavenCountTest.cs │ │ ├── RavenDB-10438.cs │ │ ├── RavenDB-10506.cs │ │ ├── RavenDB252.cs │ │ ├── RavenDB_859.cs │ │ ├── RavenDb1192_MapReduceNestedItemsTests.cs │ │ ├── RavenDbBugs.cs │ │ ├── RavenDbPutTest.cs │ │ ├── RavenDeserializationBug.cs │ │ ├── RavenDynamicTests.cs │ │ ├── RenamedProperty.cs │ │ ├── Rob.cs │ │ ├── RobStats │ │ │ └── StatisticsBug.cs │ │ ├── Rudolph.cs │ │ ├── Rusty │ │ │ ├── ProjectionCachingTests.cs │ │ │ └── ProjectionNestedLoadNullPropertyTests.cs │ │ ├── RustyTests.cs │ │ ├── Samina.cs │ │ ├── Samina2.cs │ │ ├── Samina3.cs │ │ ├── Scott.cs │ │ ├── ScriptedPathBug.cs │ │ ├── Sean.cs │ │ ├── SeanBuchanan.cs │ │ ├── SearchByMapReduceExample.cs │ │ ├── SetBased.cs │ │ ├── Severin.cs │ │ ├── ShardedFacets.cs │ │ ├── SjurIndexingTests.cs │ │ ├── SkippedResults.cs │ │ ├── SortOnNullableTests.cs │ │ ├── SortTest.cs │ │ ├── SortingOnMapReduce.cs │ │ ├── SpecialChars.cs │ │ ├── Stacey │ │ │ └── InServerTesting.cs │ │ ├── Stacey2.cs │ │ ├── StatsTest.cs │ │ ├── Stif.cs │ │ ├── Stockholm.cs │ │ ├── Strange_select_behaviour_in_query_tests.cs │ │ ├── StreamSortTest.cs │ │ ├── StreamingHalfWay.cs │ │ ├── StreamingTests.cs │ │ ├── StringIsNullOrEmpty.cs │ │ ├── SubObjectProperty.cs │ │ ├── SuggestAsync.cs │ │ ├── SuggestionFail.cs │ │ ├── Tamir.cs │ │ ├── TermVectorsInMultiMapIndexes.cs │ │ ├── TestRavenIncludes.cs │ │ ├── Thor │ │ │ └── LinqTest.cs │ │ ├── ThorTimeRange │ │ │ └── Repro.cs │ │ ├── TimeZoneQueries.cs │ │ ├── TomCabanski.cs │ │ ├── Tony.cs │ │ ├── Troy.cs │ │ ├── Troy2.cs │ │ ├── TroyMapReduce.cs │ │ ├── VacancyCampaignsTests.cs │ │ ├── ValerioBorioni.cs │ │ ├── Vandieren.cs │ │ ├── Vicente.cs │ │ ├── Victor.cs │ │ ├── Viktor.cs │ │ ├── Vitaliy.cs │ │ ├── Vitaly.cs │ │ ├── Vlad.cs │ │ ├── Wade.cs │ │ ├── Wallace.cs │ │ ├── WallaceTurner.cs │ │ ├── Weave.cs │ │ ├── What.cs │ │ ├── WhereClauseTest.cs │ │ ├── WhereInQueryTests.cs │ │ ├── WhereInTests.cs │ │ ├── WhereStringEqualsInCollection.cs │ │ ├── WildCardQuery.cs │ │ ├── Willem.cs │ │ ├── ZNS.cs │ │ ├── ZNS2.cs │ │ ├── Zeitler.cs │ │ ├── bhiku.cs │ │ ├── chad.cs │ │ ├── gaz.cs │ │ ├── gjerster.cs │ │ ├── linmouhong.cs │ │ ├── linmouhong2.cs │ │ ├── linmouhong3.cs │ │ ├── malayali.cs │ │ ├── markp.cs │ │ ├── nberardi.cs │ │ ├── ronne.cs │ │ ├── spokeypokey │ │ │ ├── Spokey.cs │ │ │ ├── Spokey5.cs │ │ │ ├── spokeypokey.cs │ │ │ ├── spokeypokey2.cs │ │ │ ├── spokeypokey3.cs │ │ │ └── spokeypokey4.cs │ │ └── tcoonfield.cs │ ├── Monitoring │ │ ├── DiskStatsGetterTest.cs │ │ └── TimeSinceOldestBackupTests.cs │ ├── Orders.cs │ ├── Queries │ │ └── SimpleQueries.cs │ ├── RavenDB-14303.cs │ ├── RavenDB-15796.cs │ ├── RavenDB-18634.cs │ ├── RavenDB-19644.cs │ ├── RavenDB-20425.cs │ ├── RavenDB-21679.cs │ ├── RavenDB_21900.cs │ ├── RecoveryTests │ │ ├── RecoveryTestBase.cs │ │ └── SampleDatabaseRecovery.cs │ ├── Rolling │ │ └── RollingIndexesClusterTests.cs │ ├── SchemaUpgrade │ │ ├── Issues │ │ │ ├── DocumentsVersion │ │ │ │ ├── schema_9 │ │ │ │ │ ├── Journals │ │ │ │ │ │ ├── 0000000000000000000.journal │ │ │ │ │ │ └── 0000000000000000001.journal │ │ │ │ │ ├── Raven.voron │ │ │ │ │ ├── headers.one │ │ │ │ │ └── headers.two │ │ │ │ └── schema_999 │ │ │ │ │ ├── Journals │ │ │ │ │ ├── 0000000000000000000.journal │ │ │ │ │ └── 0000000000000000001.journal │ │ │ │ │ ├── Raven.voron │ │ │ │ │ ├── headers.one │ │ │ │ │ └── headers.two │ │ │ ├── RavenDB_12321.cs │ │ │ ├── SystemVersion │ │ │ │ ├── Identities_CompareExchange_RavenData.zip │ │ │ │ ├── Identities_CompareExchange_RavenData_from12.zip │ │ │ │ ├── Identities_CompareExchange_RavenData_from13.zip │ │ │ │ ├── RavenDB_13724.zip │ │ │ │ ├── RavenDB_17999 │ │ │ │ │ ├── CompareExchange_Expiration_RavenData_v5.2_from50000.zip │ │ │ │ │ ├── CompareExchange_Expiration_RavenData_v5.2_new_from50000.zip │ │ │ │ │ └── CompareExchange_Expiration_RavenData_v5.3_from50000.zip │ │ │ │ ├── RavenData_rc1_plus_additions.zip │ │ │ │ ├── after_from12.zip │ │ │ │ ├── after_from13.zip │ │ │ │ └── after_from14.zip │ │ │ └── VoronCurrentVersion │ │ │ │ └── schema_999 │ │ │ │ ├── Journals │ │ │ │ ├── 0000000000000000000.journal │ │ │ │ └── 0000000000000000001.journal │ │ │ │ ├── Raven.voron │ │ │ │ ├── headers.one │ │ │ │ └── headers.two │ │ └── Server │ │ │ └── From18Test.cs │ ├── Server │ │ ├── Basic │ │ │ ├── CollectionTests.cs │ │ │ └── DatabaseNameValidations.cs │ │ ├── Documents │ │ │ ├── CompactDatabaseTest.cs │ │ │ ├── CompressAllCollectionsTest.cs │ │ │ ├── Counters │ │ │ │ └── CountersTombstoneCleaner.cs │ │ │ ├── DataArchival │ │ │ │ ├── DataArchivalDataSubscriptionsTests.cs │ │ │ │ ├── DataArchivalEtlTests.cs │ │ │ │ ├── DataArchivalIndexingTests.cs │ │ │ │ ├── DataArchivalPatchingTests.cs │ │ │ │ ├── DataArchivalReplicationTests.cs │ │ │ │ ├── DataArchivalRevisionsTests.cs │ │ │ │ ├── DataArchivalShardingTests.cs │ │ │ │ ├── DataArchivalSmugglerTests.cs │ │ │ │ └── DataArchivalTests.cs │ │ │ ├── ETL │ │ │ │ ├── ClusterEtlTimeSeriesTests.cs │ │ │ │ ├── ConnectionStringTests.cs │ │ │ │ ├── Elasticsearch │ │ │ │ │ ├── ElasticSearchEtlTestBase.cs │ │ │ │ │ ├── ElasticSearchEtlTests.cs │ │ │ │ │ ├── RavenDB_17476.cs │ │ │ │ │ └── RavenDB_17477.cs │ │ │ │ ├── EtlCountersTests.cs │ │ │ │ ├── EtlLoaderTests.cs │ │ │ │ ├── EtlTasksManagement_RavenDB_7276.cs │ │ │ │ ├── EtlTimeSeriesTests.cs │ │ │ │ ├── Olap │ │ │ │ │ ├── AzureTests.cs │ │ │ │ │ ├── BackupTests.cs │ │ │ │ │ ├── FailoverTests.cs │ │ │ │ │ ├── GoogleCloudTests.cs │ │ │ │ │ ├── LocalTests.cs │ │ │ │ │ ├── NameTests.cs │ │ │ │ │ ├── RavenDB_16311.cs │ │ │ │ │ ├── RavenDB_17263.cs │ │ │ │ │ ├── RavenDB_18465.cs │ │ │ │ │ └── S3Tests.cs │ │ │ │ ├── Queue │ │ │ │ │ ├── AzureQueueStorageEtlTestBase.cs │ │ │ │ │ ├── AzureQueueStorageEtlTests.cs │ │ │ │ │ ├── KafkaEtlTestBase.cs │ │ │ │ │ ├── KafkaEtlTests.cs │ │ │ │ │ ├── QueueEtlTestBase.cs │ │ │ │ │ ├── RabbitMqEtlTestBase.cs │ │ │ │ │ ├── RabbitMqEtlTests.cs │ │ │ │ │ ├── RavenDB_21530.cs │ │ │ │ │ ├── RavenDB_21659_Kafka.cs │ │ │ │ │ └── RavenDB_21659_RabbitMq.cs │ │ │ │ ├── Raven │ │ │ │ │ ├── BasicRavenEtlTests.cs │ │ │ │ │ ├── MultipleCollectionsRavenEtlTests.cs │ │ │ │ │ ├── RDBS_85.cs │ │ │ │ │ ├── RavenDB_10308.cs │ │ │ │ │ ├── RavenDB_11157_Raven.cs │ │ │ │ │ ├── RavenDB_11379.cs │ │ │ │ │ ├── RavenDB_11515_Raven.cs │ │ │ │ │ ├── RavenDB_12011.cs │ │ │ │ │ ├── RavenDB_12800.cs │ │ │ │ │ ├── RavenDB_13220.cs │ │ │ │ │ ├── RavenDB_13288.cs │ │ │ │ │ ├── RavenDB_14707.cs │ │ │ │ │ ├── RavenDB_17095.cs │ │ │ │ │ ├── RavenDB_3639.cs │ │ │ │ │ ├── RavenDB_3760.cs │ │ │ │ │ ├── RavenDB_6257.cs │ │ │ │ │ ├── RavenDB_6711_RavenEtl.cs │ │ │ │ │ ├── RavenDB_7064.cs │ │ │ │ │ ├── RavenDB_9072.cs │ │ │ │ │ └── RavenDB_9403.cs │ │ │ │ ├── RavenDB_10596.cs │ │ │ │ ├── RavenDB_10674.cs │ │ │ │ ├── RavenDB_11891.cs │ │ │ │ ├── RavenDB_11897.cs │ │ │ │ ├── RavenDB_11983.cs │ │ │ │ ├── RavenDB_12079.cs │ │ │ │ ├── RavenDB_12809.cs │ │ │ │ ├── RavenDB_13218.cs │ │ │ │ ├── RavenDB_14848.cs │ │ │ │ ├── RavenDB_15637.cs │ │ │ │ ├── RavenDB_16804.cs │ │ │ │ ├── RavenDB_20757.cs │ │ │ │ ├── RavenDB_7284.cs │ │ │ │ ├── RavenDB_8866.cs │ │ │ │ └── SQL │ │ │ │ │ ├── RavenDB_19518.cs │ │ │ │ │ ├── RavenDB_9626.cs │ │ │ │ │ └── SqlEtlTests.cs │ │ │ ├── Expiration │ │ │ │ └── ExpirationTests.cs │ │ │ ├── Indexing │ │ │ │ ├── Auto │ │ │ │ │ ├── BasicAutoMapReduceIndexingSlow.cs │ │ │ │ │ ├── RavenDB_8713.cs │ │ │ │ │ ├── RavenDB_8761.cs │ │ │ │ │ ├── RavenDB_9292.cs │ │ │ │ │ └── RavenDB_9535.cs │ │ │ │ ├── CollisionsOfReduceKeyHashes_StressTests.cs │ │ │ │ ├── Debugging │ │ │ │ │ └── RavenDB_5577.cs │ │ │ │ ├── ExactSearchOnAutoIndex_RavenDB_8006.cs │ │ │ │ ├── IndexCompilationTests.cs │ │ │ │ ├── IndexMerging.cs │ │ │ │ ├── LiveIndexingPerformanceCollectorTests.cs │ │ │ │ ├── MapReduce │ │ │ │ │ ├── GroupByComplexObjects.cs │ │ │ │ │ ├── OutputReduceToCollectionReplicationTests.cs │ │ │ │ │ ├── OutputReduceToCollectionTests.cs │ │ │ │ │ ├── OutputReduceToCollectionTests_Counters.cs │ │ │ │ │ ├── OutputReduceToCollectionTests_TimeSeries.cs │ │ │ │ │ ├── RavenDB_11643.cs │ │ │ │ │ ├── RavenDB_12932.cs │ │ │ │ │ ├── RavenDB_14418.cs │ │ │ │ │ ├── RavenDB_14451.cs │ │ │ │ │ ├── RavenDB_14482.cs │ │ │ │ │ ├── RavenDB_14521.cs │ │ │ │ │ ├── RavenDB_5383.cs │ │ │ │ │ ├── RavenDB_6019.cs │ │ │ │ │ └── RavenDB_6041.cs │ │ │ │ ├── RavenDB_8257.cs │ │ │ │ └── Static │ │ │ │ │ ├── BasicStaticMapReduceIndexing.cs │ │ │ │ │ ├── CollisionsOfReduceKeyHashes.cs │ │ │ │ │ ├── RavenDB_11469.cs │ │ │ │ │ └── RavenDB_7691.cs │ │ │ ├── Migration │ │ │ │ ├── AttachmentsTest.cs │ │ │ │ ├── BasicMigrationTests.cs │ │ │ │ ├── MongoDBMigrationTest.cs │ │ │ │ ├── MsSQLSchemaTest.cs │ │ │ │ ├── MySQLSchemaTest.cs │ │ │ │ ├── NpgSQLSchemaTest.cs │ │ │ │ ├── OracleSQLSchemaTest.cs │ │ │ │ ├── PatchTest.cs │ │ │ │ ├── RecursiveMigrationTest.cs │ │ │ │ ├── SqlAwareTestBase.cs │ │ │ │ └── TestMigrationTest.cs │ │ │ ├── ModifyExistingDocument.cs │ │ │ ├── Notifications │ │ │ │ └── ChangesTests.cs │ │ │ ├── OngoingTasks │ │ │ │ ├── PinOnGoingTaskToMentorNode.cs │ │ │ │ └── PinOnGoingTaskToMentorNodeServerWide.cs │ │ │ ├── Patching │ │ │ │ ├── AdvancedPatching.cs │ │ │ │ ├── PatchAndDeleteByCollection.cs │ │ │ │ ├── PatchByIndexTests.cs │ │ │ │ ├── PatchDebugMode.cs │ │ │ │ └── PatchingConfigurationsTests.cs │ │ │ ├── PeriodicBackup │ │ │ │ ├── Aws.cs │ │ │ │ ├── Azure.cs │ │ │ │ ├── CloudBackupTestBase.cs │ │ │ │ ├── CustomS3.cs │ │ │ │ ├── EncryptedBackupTest.cs │ │ │ │ ├── FtpBasicTests.cs │ │ │ │ ├── GoogleCloud.cs │ │ │ │ ├── PeriodicBackupSlowTests.cs │ │ │ │ ├── RavenDB-11139.cs │ │ │ │ ├── RavenDB-13229.cs │ │ │ │ ├── RavenDB-20544.cs │ │ │ │ ├── RavenDB-4613.cs │ │ │ │ ├── RavenDB_12012.cs │ │ │ │ ├── Restore │ │ │ │ │ ├── RestoreFromAwsS3.cs │ │ │ │ │ ├── RestoreFromAzure.cs │ │ │ │ │ ├── RestoreFromCustomS3.cs │ │ │ │ │ ├── RestoreFromGoogleCloud.cs │ │ │ │ │ └── RestoreFromS3.cs │ │ │ │ ├── Retention.cs │ │ │ │ └── ServerWideBackup.cs │ │ │ ├── Queries │ │ │ │ ├── Dynamic │ │ │ │ │ ├── Map │ │ │ │ │ │ ├── DynamicQueriesEnumsNestedFieldsAndCollections.cs │ │ │ │ │ │ └── MatchingAutoMapIndexesForDynamicQueries.cs │ │ │ │ │ ├── MapReduce │ │ │ │ │ │ ├── MatchingAutoMapReduceIndexesForDynamicQueries.cs │ │ │ │ │ │ ├── RavenDB_7044.cs │ │ │ │ │ │ ├── RavenDB_7995.cs │ │ │ │ │ │ ├── RavenDB_8075.cs │ │ │ │ │ │ └── RavenDB_8076.cs │ │ │ │ │ ├── RavenDB_8325.cs │ │ │ │ │ └── RavenDB_8806.cs │ │ │ │ └── MatchingAutoMapReduceIndexesForDynamicQueriesSlow.cs │ │ │ ├── QueueSink │ │ │ │ ├── Issues │ │ │ │ │ └── RavenDB_22105.cs │ │ │ │ ├── KafkaQueueSinkTests.cs │ │ │ │ ├── QueueSinkTestBase.cs │ │ │ │ ├── RabbitMqQueueSinkTestBase.cs │ │ │ │ ├── RabbitMqSinkTests.cs │ │ │ │ └── RavenDB_21852.cs │ │ │ ├── Replication │ │ │ │ ├── ReplicateLargeDatabase.cs │ │ │ │ └── ServerWideReplication.cs │ │ │ ├── Revisions │ │ │ │ ├── RevertRevisionsByCollectionTests.cs │ │ │ │ ├── RevertRevisionsTests.cs │ │ │ │ ├── RevisionsReplication.cs │ │ │ │ └── RevisionsReplicationTransactionMarker.cs │ │ │ └── TimeSeries │ │ │ │ └── TimeSeriesTombstoneCleaner.cs │ │ ├── Integrations │ │ │ └── PostgreSQL │ │ │ │ └── RavenDB_16880.cs │ │ ├── MergedEnumeratorTests.cs │ │ ├── NotificationCenter │ │ │ ├── HugeDocuments.cs │ │ │ ├── NotificationCenterTests.cs │ │ │ └── OutOfMemoryNotificationTests.cs │ │ ├── RecordingTransactionOperationsMergerTests.cs │ │ ├── Replication │ │ │ ├── AutomaticConflictResolvingOnPut.cs │ │ │ ├── DisableDatabasePropagationInRaftCluster.cs │ │ │ ├── ExternalReplicationTests.cs │ │ │ ├── PullReplicationPreventDeletionsTests.cs │ │ │ ├── PullReplicationTests.cs │ │ │ ├── PullReplicationWithAuthenticationTest.cs │ │ │ ├── ReplicationAutomaticConflictResolution.cs │ │ │ ├── ReplicationBasicTestsSlow.cs │ │ │ ├── ReplicationCleanTombstones.cs │ │ │ ├── ReplicationConflictsTests.cs │ │ │ ├── ReplicationDocuments.cs │ │ │ ├── ReplicationIndexesAndTransformers.cs │ │ │ ├── ReplicationManualConflictResolution.cs │ │ │ ├── ReplicationOfConflicts.cs │ │ │ ├── ReplicationResolveConflictsOnConfigurationChange.cs │ │ │ ├── ReplicationRevisionsTests.cs │ │ │ ├── ReplicationSpecialCases.cs │ │ │ ├── ReplicationTombstoneTests.cs │ │ │ ├── ReplicationWithRevisions.cs │ │ │ └── ReplicationWriteAssurance.cs │ │ ├── ServerStore.cs │ │ └── TransactionMergerTests.cs │ ├── Sharding │ │ ├── Backup │ │ │ ├── ShardedBackupTests .cs │ │ │ ├── ShardedRestoreBackupTests.cs │ │ │ ├── ShardedSmugglerTests.cs │ │ │ └── SnapshotBackupTests.cs │ │ ├── BucketMigration │ │ │ ├── BucketsMigratorTests.cs │ │ │ └── DocumentsMigrationTests.cs │ │ ├── Client │ │ │ ├── Operations │ │ │ │ ├── DocumentsCompressionConfigurationTests.cs │ │ │ │ ├── GetCollectionStatisticsOperationTests.cs │ │ │ │ ├── GetDocumentConflictsTests.cs │ │ │ │ ├── GetStatisticsOperationTests.cs │ │ │ │ ├── GetSuggestConflictResolutionOperationTests.cs │ │ │ │ └── GetTimeSeriesConfigurationTests.cs │ │ │ ├── OptimisticConcurrencyAfterResharding.cs │ │ │ └── ShardedHiloTests.cs │ │ ├── Cluster │ │ │ ├── BucketStatsTests.cs │ │ │ ├── RavenDB_19614.cs │ │ │ ├── ReshardingTests.cs │ │ │ ├── ShardedClusterObserverTests.cs │ │ │ └── SubscriptionsWithReshardingTests.cs │ │ ├── ETL │ │ │ ├── ShardedEtlFailoverTests.cs │ │ │ └── ShardedEtlTests.cs │ │ ├── Encryption │ │ │ └── ShardedEncryption.cs │ │ ├── Indexes │ │ │ ├── RavenDB-19621.cs │ │ │ └── ShardedIndexHandlerTests.cs │ │ ├── Issues │ │ │ ├── RavenDB_13927.cs │ │ │ ├── RavenDB_16276.cs │ │ │ ├── RavenDB_18159.cs │ │ │ ├── RavenDB_18166.cs │ │ │ ├── RavenDB_18179.cs │ │ │ ├── RavenDB_18199.cs │ │ │ ├── RavenDB_18663.cs │ │ │ ├── RavenDB_18766.cs │ │ │ ├── RavenDB_18784.cs │ │ │ ├── RavenDB_19056.cs │ │ │ ├── RavenDB_19285.cs │ │ │ ├── RavenDB_19524.cs │ │ │ ├── RavenDB_19527.cs │ │ │ ├── RavenDB_19683.cs │ │ │ ├── RavenDB_19744.cs │ │ │ ├── RavenDB_20015.cs │ │ │ ├── RavenDB_20035.cs │ │ │ ├── RavenDB_20037.cs │ │ │ ├── RavenDB_20110.cs │ │ │ ├── RavenDB_20226.cs │ │ │ ├── RavenDB_20390.cs │ │ │ ├── RavenDB_20487.cs │ │ │ ├── RavenDB_20747.cs │ │ │ ├── RavenDB_20884.cs │ │ │ ├── RavenDB_21084.cs │ │ │ ├── RavenDB_21103.cs │ │ │ ├── RavenDB_21104.cs │ │ │ ├── RavenDB_21315.cs │ │ │ ├── RavenDB_22200.cs │ │ │ └── RavenDB_22731.cs │ │ ├── PrefixedSharding.cs │ │ ├── Queries │ │ │ ├── RavenDB_18257.cs │ │ │ ├── RavenDB_20048.cs │ │ │ ├── ShardedMapReduceTests.cs │ │ │ └── ShardedOrderByTests.cs │ │ ├── Replication │ │ │ └── ShardedExternalReplicationTests.cs │ │ ├── ShardingTopologyTests.cs │ │ ├── StudioBucketsTests.cs │ │ └── Subscriptions │ │ │ ├── ShardedSubscriptionClusterTests.cs │ │ │ ├── ShardedSubscriptionConcurrentTests.cs │ │ │ └── ShardedSubscriptionSlowTests.cs │ ├── SlowTests.csproj │ ├── SlowTests │ │ ├── Bugs │ │ │ ├── AsyncSetBasedOps.cs │ │ │ ├── ManyDocumentWithMapReduce.cs │ │ │ ├── TimeoutTester.cs │ │ │ └── VeryBigResultSet.cs │ │ ├── Faceted │ │ │ └── FacetPaging.cs │ │ ├── Indexes │ │ │ ├── MapReduceIndexOnLargeDataSet.cs │ │ │ └── StoreFields.cs │ │ ├── Issues │ │ │ ├── RavenDB-15859.cs │ │ │ ├── RavenDB-22376.cs │ │ │ ├── RavenDB_1280.cs │ │ │ ├── RavenDB_1280_ReOpen.cs │ │ │ ├── RavenDB_1411.cs │ │ │ ├── RavenDB_2134.cs │ │ │ ├── RavenDB_2660 .cs │ │ │ └── RavenDB_2812.cs │ │ ├── MailingList │ │ │ ├── Jalchr2.cs │ │ │ └── Jalchr3.cs │ │ ├── Queries │ │ │ └── IntersectionWithLargeDataset.cs │ │ ├── RavenDB-10571.cs │ │ └── RavenDB-14600.cs │ ├── Smuggler │ │ ├── BackupDatabaseRecordTests.cs │ │ ├── Data │ │ │ ├── DocumentWithRevisions.ravendbdump │ │ │ ├── Document_Without_Attachment_Stream.ravendbdump │ │ │ ├── FSEsent.zip │ │ │ ├── FSVoron.zip │ │ │ ├── Identities_3.5.35288.ravendbdump │ │ │ ├── Indexes_And_Transformers_3.5.ravendbdump │ │ │ ├── Northwind_3.5.35168.ravendbdump │ │ │ ├── RevisionsWithoutADocument.ravendbdump │ │ │ ├── Revisions_3.5.35220.ravendbdump │ │ │ ├── SampleDataEsent.zip │ │ │ ├── SampleDataEsentLogFileSize4.zip │ │ │ ├── SampleDataVoron.zip │ │ │ └── Tools.zip │ │ ├── LegacySmugglerTests.cs │ │ ├── RavenDB-12890.cs │ │ ├── RavenDB-14201.cs │ │ ├── RavenDB-16709.cs │ │ ├── RavenDB-17341.cs │ │ ├── SmugglerApiTests.cs │ │ └── SmugglerConflicts.cs │ ├── SparrowTests │ │ ├── DownloadLogsCommand.cs │ │ ├── LoggingSourceTests.cs │ │ ├── MicrosoftLogTests.cs │ │ ├── ModifyConfigurationTests.cs │ │ └── VxSort │ │ │ ├── BitonicSort.cs │ │ │ ├── DataGeneration.cs │ │ │ └── ParityTests.cs │ ├── Tests │ │ ├── Bugs │ │ │ ├── QueryOptimizer │ │ │ │ ├── QueryOptimizeTests.cs │ │ │ │ └── QueryOptimizeTests_ExplicitCollections.cs │ │ │ ├── TempIndexScore.cs │ │ │ ├── TransformResults │ │ │ │ ├── Answer.cs │ │ │ │ ├── AnswerEntity.cs │ │ │ │ ├── AnswerViewItem.cs │ │ │ │ ├── AnswerVote.cs │ │ │ │ ├── AnswerVoteEntity.cs │ │ │ │ ├── Answers_ByAnswerEntity.cs │ │ │ │ ├── Answers_ByQuestion.cs │ │ │ │ ├── Answers_ByQuestion_NoTransformResults.cs │ │ │ │ ├── Question.cs │ │ │ │ ├── QuestionView.cs │ │ │ │ ├── QuestionVote.cs │ │ │ │ ├── QuestionWithVoteTotalIndex.cs │ │ │ │ ├── User.cs │ │ │ │ └── Votes_ByAnswerEntity.cs │ │ │ ├── Vlko │ │ │ │ ├── QueryWithMultipleWhere.cs │ │ │ │ └── RelationIdIndex.cs │ │ │ └── Zhang │ │ │ │ ├── UseMaxForDateTimeTypeInReduce.cs │ │ │ │ └── UseMaxForLongTypeInReduce.cs │ │ ├── ClientProjectionShouldWork.cs │ │ ├── DistinctFacets │ │ │ ├── DistinctAndFacets.cs │ │ │ └── FromUser.cs │ │ ├── Faceted │ │ │ ├── Aggregation.cs │ │ │ ├── AggregationFacet.cs │ │ │ ├── ConditionalGetHelper.cs │ │ │ ├── DynamicFacets.cs │ │ │ ├── FacetAdvancedAPI.cs │ │ │ ├── FacetedIndex.cs │ │ │ ├── FacetedIndexLimit.cs │ │ │ ├── FacetsOnDateTimeOffset.cs │ │ │ ├── FacetsWithParameters.cs │ │ │ ├── LargeFacets.cs │ │ │ ├── LazyFacets.cs │ │ │ └── RavenDB_12748.cs │ │ ├── Indexes │ │ │ ├── AnalyzerResolution.cs │ │ │ ├── BoostingDuringIndexing.cs │ │ │ ├── CastingInIndexDefinition.cs │ │ │ ├── ComplexIndexOnNotAnalyzedField.cs │ │ │ ├── CreateIndexesWithCasting.cs │ │ │ ├── DynamicDictionaryIndexesTests.cs │ │ │ ├── DynamicEnumerableIndexesTests.cs │ │ │ ├── IndexLocking.cs │ │ │ ├── IndexWithSubProperty.cs │ │ │ ├── LinqIndexesFromClient.cs │ │ │ ├── OldIndexRunWhileNewIndexesAreRunning.cs │ │ │ ├── QueryingOnStaleIndexes.cs │ │ │ ├── ReduceCanUseExtensionMethods.cs │ │ │ ├── WithDecimalValue.cs │ │ │ └── WithNullableDateTime.cs │ │ ├── InflectorTests.cs │ │ ├── Issues │ │ │ ├── RavenDB-18078.cs │ │ │ └── RavenDB-3691.cs │ │ ├── Linq │ │ │ ├── Any.cs │ │ │ ├── CanCallLastOnArray.cs │ │ │ ├── CanQueryAndIncludeRevisions.cs │ │ │ ├── Contains.cs │ │ │ ├── DynamicQueriesWithStaticIndexes.cs │ │ │ ├── FirstOrDefault.cs │ │ │ ├── FlagsEnum.cs │ │ │ ├── GroupByAndDocumentId.cs │ │ │ ├── In.cs │ │ │ ├── IsNullOrEmpty.cs │ │ │ ├── ListIndexOf.cs │ │ │ ├── Not.cs │ │ │ ├── OfTypeSuppor3.cs │ │ │ ├── OfTypeSupport.cs │ │ │ ├── OfTypeSupport2.cs │ │ │ ├── OrderBy.cs │ │ │ ├── RavenDB14.cs │ │ │ ├── SelectDictionaryItem.cs │ │ │ ├── SelectManyShouldWork.cs │ │ │ ├── UsingRavenQueryProvider.cs │ │ │ ├── UsingWhereConditions.cs │ │ │ ├── WhereClause.cs │ │ │ └── WhereStringEquals.cs │ │ ├── MultiGet │ │ │ ├── MultiGetBasic.cs │ │ │ ├── MultiGetBugs.cs │ │ │ ├── MultiGetNonStaleResults.cs │ │ │ └── MultiGetQueries.cs │ │ ├── NestedIndexing │ │ │ ├── CanIndexReferencedEntity.cs │ │ │ ├── CanTrackWhatCameFromWhat.cs │ │ │ └── WithMapReduce.cs │ │ ├── Queries │ │ │ ├── CanQueryOnCustomClass.cs │ │ │ ├── CanQueryOnLargeXml.cs │ │ │ ├── Includes.cs │ │ │ └── Intersection.cs │ │ ├── Querying │ │ │ ├── CachingOfLongQueries.cs │ │ │ ├── DynamicIndexesWithCollections.cs │ │ │ ├── HighlightesTests.cs │ │ │ ├── SearchOperator.cs │ │ │ ├── SkipDuplicates.cs │ │ │ ├── UsingDocumentQuery.cs │ │ │ ├── UsingDynamicQueryWithLocalServer.cs │ │ │ ├── UsingDynamicQueryWithRemoteServer.cs │ │ │ └── UsingStronglyTypedDocumentQuery.cs │ │ ├── Sorting │ │ │ └── AlphaNumericSorting.cs │ │ ├── Spatial │ │ │ ├── Afif.cs │ │ │ ├── BoundingBoxIndexTests.cs │ │ │ ├── BrainV.cs │ │ │ ├── CartesianTests.cs │ │ │ ├── DynamicSpatialQueries.cs │ │ │ ├── GeoUriTests.cs │ │ │ ├── JamesCrowley.cs │ │ │ ├── Nick.cs │ │ │ ├── ShapeStringConverterTests.cs │ │ │ ├── SimonBartlett.cs │ │ │ ├── Spatial.cs │ │ │ ├── SpatialQueries.cs │ │ │ ├── SpatialSearch.cs │ │ │ ├── SpatialSorting.cs │ │ │ ├── SpatialTest2.cs │ │ │ ├── SpatialUnitTests.cs │ │ │ ├── TwoLocations.cs │ │ │ └── WktSanitizerTests.cs │ │ ├── Subscriptions.cs │ │ ├── Suggestions │ │ │ ├── Suggestions.cs │ │ │ ├── SuggestionsLazy.cs │ │ │ └── SuggestionsUsingAnIndex.cs │ │ ├── TempFileCacheTests.cs │ │ ├── TestsInheritanceTests.cs │ │ ├── Track │ │ │ ├── AsyncProjectionShouldWork.cs │ │ │ └── RavenDB053.cs │ │ └── Views │ │ │ ├── MapReduce.cs │ │ │ └── MapReduce_IndependentSteps.cs │ ├── Tools │ │ ├── SetupSecuredClusterUsingRvn.cs │ │ └── SetupUnsecuredClusterUsingRvn.cs │ ├── Utils │ │ ├── Attributes │ │ │ └── CriticalCulturesAttribute.cs │ │ ├── CompareExchangeTombstonCleanerTestHelper.cs │ │ ├── ConflictResolverTests.cs │ │ ├── HtmlUtilTests.cs │ │ ├── InfrastructureTests.cs │ │ ├── InlineDataWithRandomSeed.cs │ │ ├── SmapsReaderTests.cs │ │ └── TestDataUtil.cs │ ├── Verifications │ │ ├── AuditsAndMetadata.cs │ │ ├── CanTransformWithDynamicFields.cs │ │ ├── DictionaryOfEnum.cs │ │ ├── LiveProjectionOnTasks.cs │ │ ├── NullDynamicValues.cs │ │ ├── RavenDB_2239.cs │ │ ├── RavenDB_5241.cs │ │ ├── ReduceAndProject.cs │ │ └── Tobias.cs │ └── Voron │ │ ├── Backups │ │ └── Incremental.cs │ │ ├── BigValue.cs │ │ ├── Bugs │ │ ├── AccessViolationWithIteratorUsage.cs │ │ ├── Bugs.cs │ │ ├── ChecksumMismatchAfterRecovery.cs │ │ ├── DataCorruptionInOverflow.cs │ │ ├── DataInconsistencyRepro.cs │ │ ├── Deletes.cs │ │ ├── EmptyTree.cs │ │ ├── FlushingToDataFile.cs │ │ ├── FreeSpaceAndOverflowPages.cs │ │ ├── IndexPointToNonLeafPageTests.cs │ │ ├── InvalidReleasesOfScratchPages.cs │ │ ├── Isolation.cs │ │ ├── Iterating.cs │ │ ├── MemoryAccess.cs │ │ ├── MultiAdds.cs │ │ ├── MultiReads.cs │ │ ├── OverflowsReusage.cs │ │ ├── PageAllocation.cs │ │ ├── PageTableIssue.cs │ │ ├── PagesFilteredOutByJournalApplicator.cs │ │ ├── RavenDB_13265.cs │ │ ├── RavenDB_6045.cs │ │ ├── RavenDB_6748.cs │ │ ├── RavenDB_6971.cs │ │ ├── RavenDB_8962.cs │ │ ├── RavenDb_4706.cs │ │ ├── RecoveryWithManualFlush.cs │ │ ├── StartsWithSearch.cs │ │ ├── TreeRebalancer.cs │ │ └── UpdateLastItem.cs │ │ ├── Checksum.cs │ │ ├── CompactTrees │ │ ├── CompactTreeSlowTests.cs │ │ └── FuzzyUpserts.cs │ │ ├── Compaction │ │ └── StorageCompactionTestsSlow.cs │ │ ├── DeletionFromMultiTableWithGlobalIndex.cs │ │ ├── DuplicatePageUsage.cs │ │ ├── Full.cs │ │ ├── Issues │ │ ├── RDBCL_1977.cs │ │ ├── RavenDB-12268.cs │ │ ├── RavenDB-9916.cs │ │ ├── RavenDB_10225_Voron.cs │ │ ├── RavenDB_10813.cs │ │ ├── RavenDB_10825.cs │ │ ├── RavenDB_11643_Voron.cs │ │ ├── RavenDB_11865.cs │ │ ├── RavenDB_12151_Voron_1.cs │ │ ├── RavenDB_12151_Voron_2.cs │ │ ├── RavenDB_12506.cs │ │ ├── RavenDB_12524.cs │ │ ├── RavenDB_12543.cs │ │ ├── RavenDB_13130.cs │ │ ├── RavenDB_13384.cs │ │ ├── RavenDB_13640.cs │ │ ├── RavenDB_15912.cs │ │ ├── RavenDB_16023.cs │ │ ├── RavenDB_16105.cs │ │ ├── RavenDB_16507.cs │ │ ├── RavenDB_16536.cs │ │ ├── RavenDB_16860.cs │ │ ├── RavenDB_17054.cs │ │ ├── RavenDB_17088.cs │ │ ├── RavenDB_17194.cs │ │ ├── RavenDB_17354.cs │ │ ├── RavenDB_17997.cs │ │ ├── RavenDB_18059.cs │ │ ├── RavenDB_19278.cs │ │ ├── RavenDB_21107.cs │ │ ├── RavenDB_22257.cs │ │ ├── RavenDB_7097.cs │ │ └── RavenDB_7099.cs │ │ ├── LargeFixedSizeTrees.cs │ │ ├── LargeValues.cs │ │ ├── LeafsCompression │ │ ├── Data │ │ │ ├── RavenDB-12700-page-1278-compressed │ │ │ └── RavenDB-17660-page-5728-compressed │ │ ├── RDBS_52.cs │ │ ├── RavenDB_12700_Voron.cs │ │ ├── RavenDB_15302.cs │ │ ├── RavenDB_16363.cs │ │ ├── RavenDB_17660.cs │ │ └── RavenDB_5384.cs │ │ ├── LongKeys.cs │ │ ├── MemoryMapWithoutBackingPagerTest.cs │ │ ├── MultiAdds.cs │ │ ├── MutipleScratchBuffersUsage.cs │ │ ├── NativeListTests.cs │ │ ├── PageSplitterTests.cs │ │ ├── PalTest │ │ ├── PalJournalFunctionTests.cs │ │ └── PalMmapFunctionTests.cs │ │ ├── PostingListTests.cs │ │ ├── RavenDB-11871.cs │ │ ├── RavenDB_12725.cs │ │ ├── RavenDB_12725_2.cs │ │ ├── RavenDB_12725_3.cs │ │ ├── RavenDB_12725_4.cs │ │ ├── RavenDB_12725_5.cs │ │ ├── RavenDB_12725_6.cs │ │ ├── RavenDB_13940.cs │ │ ├── RavenDB_13940_Encrypted.cs │ │ ├── RavenDB_16428.cs │ │ ├── RavenDB_16635.cs │ │ ├── RavenDB_19471.cs │ │ ├── RavenDB_21926.cs │ │ ├── RavenDB_2939.cs │ │ ├── Recovery.cs │ │ ├── RecoveryMultipleJournals.cs │ │ ├── Snapshots.cs │ │ ├── SplittingVeryBig.cs │ │ ├── Storage │ │ ├── BigValue.cs │ │ ├── Files.cs │ │ ├── FreeScratchPages.cs │ │ ├── Increments.cs │ │ ├── InitialSize.cs │ │ ├── MemoryMapWithoutBackingPagerTest.cs │ │ ├── MultiTransactions.cs │ │ ├── PageHandling.cs │ │ ├── Pagers.cs │ │ ├── Quotas.cs │ │ ├── RavenDB7698.cs │ │ ├── Restarts.cs │ │ ├── Snapshots.cs │ │ ├── StorageReportGenerationTests.cs │ │ ├── SyncFlushTimingTest.cs │ │ └── VeryBig.cs │ │ ├── Streams │ │ └── CanUseStream.cs │ │ └── Versioning.cs ├── StressTests │ ├── Client │ │ ├── Attachments │ │ │ ├── AttachmentsHugeFiles.cs │ │ │ ├── AttachmentsSessionAsyncStress.cs │ │ │ ├── AttachmentsSessionStress.cs │ │ │ ├── AttachmentsStreamStress.cs │ │ │ ├── AttachmentsStreamStressFromSlow.cs │ │ │ └── BulkInsertAttachmentsStress.cs │ │ ├── MultiGet.cs │ │ ├── StreamingWithTimeout.cs │ │ └── TimeSeries │ │ │ ├── Policies │ │ │ └── TimeSeriesConfigurationTestsStress.cs │ │ │ └── TimeSeriesStress.cs │ ├── Cluster │ │ ├── ClusterIndexNotificationsTestStress.cs │ │ ├── ClusterOperationTestsStress.cs │ │ ├── ClusterStressTests.cs │ │ └── ClusterTransactionTestsStress.cs │ ├── Corax │ │ ├── Bugs │ │ │ ├── CompactTreeAddAndRemove.cs │ │ │ ├── CompactTreeOptimizedLookup.cs │ │ │ ├── GrowableBuffersTests.cs │ │ │ ├── PostingListTestsExtended.cs │ │ │ ├── RavenDB_21519.cs │ │ │ └── Terms.log.gz │ │ ├── IndexSearcherTest.cs │ │ └── OrderByMultiSorting.cs │ ├── Core │ │ └── Expiration │ │ │ └── ExpirationStressTest.cs │ ├── Databases.cs │ ├── Issues │ │ ├── FilteredReplicationTestsStress.cs │ │ ├── RavenDB-13987.cs │ │ ├── RavenDB-15080.cs │ │ ├── RavenDB-15145.cs │ │ ├── RavenDB-15608.cs │ │ ├── RavenDB-16934.cs │ │ ├── RavenDB-19149.cs │ │ ├── RavenDB-5763.cs │ │ ├── RavenDB_12151.cs │ │ ├── RavenDB_13528.cs │ │ ├── RavenDB_13861.cs │ │ ├── RavenDB_14292.cs │ │ ├── RavenDB_14464.cs │ │ ├── RavenDB_14744.cs │ │ ├── RavenDB_15780.cs │ │ ├── RavenDB_17296.cs │ │ ├── RavenDB_17340.cs │ │ ├── RavenDB_17903_Stress.cs │ │ └── RavenDB_18420.cs │ ├── Rachis │ │ ├── AddNodeToClusterTests.cs │ │ ├── DatabaseCluster │ │ │ ├── ClusterDatabaseMaintenanceStress.cs │ │ │ └── ReplicationTestsStress.cs │ │ ├── SubscriptionFailoverWithWaitingChainsStress.cs │ │ └── SubscriptionsFailoverStress.cs │ ├── Server │ │ ├── Documents │ │ │ ├── ETL │ │ │ │ ├── EtlTimeSeriesTestsStress.cs │ │ │ │ └── Olap │ │ │ │ │ └── LocalTestsStress.cs │ │ │ └── PeriodicBackup │ │ │ │ ├── PeriodicBackupTestsStress.cs │ │ │ │ ├── RetentionStress.cs │ │ │ │ └── ServerWideBackupStress.cs │ │ ├── Encryption │ │ │ └── EncryptionStressTests.cs │ │ └── Replication │ │ │ ├── ExternalReplicationStressTests.cs │ │ │ ├── ExternalReplicationStressTests_NoDispose.cs │ │ │ └── PullReplicationStressTests.cs │ ├── Sparrow │ │ └── DisposeOnceTests.cs │ ├── StressTests.csproj │ ├── Utils │ │ └── ChunkedMmapStreamTests.cs │ └── Voron │ │ ├── Bugs │ │ └── DataInconsistencyReproStressTests.cs │ │ ├── Data │ │ ├── data.txt │ │ └── data2.txt │ │ ├── HugeTransactions.cs │ │ ├── InvalidReleasesOfScratchPages.cs │ │ ├── Issues │ │ ├── RavenDB_19273.cs │ │ ├── RavenDB_20675.cs │ │ └── RavenDB_7667.cs │ │ ├── LargeFixedSizeTreesStressCases.cs │ │ ├── PageSplitterStressTests.cs │ │ └── Trees │ │ └── FreeSpaceStressTests.cs ├── Tests.Infrastructure │ ├── AlphabeticTestsOrderer.cs │ ├── AmazonGlacierRetryFactAttribute.cs │ ├── AmazonGlacierRetryTheoryAttribute.cs │ ├── AmazonS3RetryFactAttribute.cs │ ├── AmazonS3RetryTheoryAttribute.cs │ ├── AzureQueueStorageHelper.cs │ ├── AzureRetryFactAttribute.cs │ ├── AzureRetryTheoryAttribute.cs │ ├── AzureSasTokenRetryFactAttribute.cs │ ├── CloudAttributeHelper.cs │ ├── ClusterTestBase.Sharding.cs │ ├── ClusterTestBase.cs │ ├── CommonTestsAssemblyInfo.cs │ ├── ConnectionString │ │ ├── ElasticSearchTestNodes.cs │ │ ├── KafkaConnectionString.cs │ │ ├── MongoDBConnectionString.cs │ │ ├── MssqlConnectionString.cs │ │ ├── MySqlConnectionString.cs │ │ ├── NpgSqlConnectionString.cs │ │ ├── OracleConnectionString.cs │ │ ├── RabbitMqConnectionString.cs │ │ └── SqlConnectionString.cs │ ├── ConsoleTestOutputHelper.cs │ ├── ContextExtensions.cs │ ├── CreateSampleDataOperation.cs │ ├── CultureTheoryAttribute.cs │ ├── CustomS3RetryFactAttribute.cs │ ├── CustomS3RetryTheoryAttribute.cs │ ├── Data │ │ └── Northwind.4.2.ravendbdump │ ├── DocumentStoreExtensions.cs │ ├── Entities │ │ ├── Camera.cs │ │ ├── Company.cs │ │ ├── Event.cs │ │ ├── Headquater.cs │ │ ├── ISearchable.cs │ │ ├── Order.cs │ │ ├── OrderLine.cs │ │ ├── Post.cs │ │ ├── PostContent.cs │ │ ├── TShirt.cs │ │ ├── TShirtType.cs │ │ ├── User.cs │ │ └── UserWithoutId.cs │ ├── Extensions │ │ ├── DocumentStoreSessionTestingExtensions.cs │ │ └── OperationExecutorExtensions.cs │ ├── GoogleCloudRetryFactAttribute.cs │ ├── IReplicationManager.cs │ ├── InterversionTest │ │ ├── ConfigurableRavenServerLocator.cs │ │ ├── RavenServerLocator.cs │ │ ├── RavenServerRunner.cs │ │ ├── ServerBuildDownloadInfo.cs │ │ ├── ServerBuildRetriever.cs │ │ └── UpgradeTestSuit.cs │ ├── InterversionTestBase.cs │ ├── KafkaEtlTestBase.cs │ ├── LicenseRequiredFactAttribute.cs │ ├── LicenseRequiredRetryFactAttribute.cs │ ├── LicenseRequiredTheoryAttribute.cs │ ├── LinuxFactAttribute.cs │ ├── LinuxRaceConditionWorkAround.cs │ ├── LinuxTheoryAttribute.cs │ ├── NightlyBuildAzureRetryFact.cs │ ├── NightlyBuildFactAttribute.cs │ ├── NightlyBuildMultiplatformFactAttribute.cs │ ├── NightlyBuildMultiplatformTheoryAttribute.cs │ ├── NightlyBuildTheoryAttribute.cs │ ├── NoDisposalNeeded.cs │ ├── NoDisposalNoOutputNeeded.cs │ ├── NonLinuxFactAttribute.cs │ ├── ObservableExtensions.cs │ ├── Operations │ │ ├── GetClusterDebugInfoPackageOperation.cs │ │ └── GetIndexStalenessOperation.cs │ ├── ParallelTestBase.cs │ ├── ProxyServer.cs │ ├── RachisConsensusTestBase.cs │ ├── RavenDataAttribute.cs │ ├── RavenDataAttributeBase.cs │ ├── RavenExplicitDataAttribute.cs │ ├── RavenExternalReplicationAttribute.cs │ ├── RavenFactAttribute.cs │ ├── RavenIntegrationRetryFactAttribute.cs │ ├── RavenLowLevelTestBase.cs │ ├── RavenMemberDataAttribute.cs │ ├── RavenMultiLicenseRequiredFactAttribute.cs │ ├── RavenMultiplatformFactAttribute.cs │ ├── RavenMultiplatformTheoryAttribute.cs │ ├── RavenRetryFactAttribute.cs │ ├── RavenRetryTheoryAttribute.cs │ ├── RavenTestBase.Backup.cs │ ├── RavenTestBase.Certificates.cs │ ├── RavenTestBase.Cluster.cs │ ├── RavenTestBase.Databases.cs │ ├── RavenTestBase.Encryption.cs │ ├── RavenTestBase.Etl.cs │ ├── RavenTestBase.Indexes.cs │ ├── RavenTestBase.Replication.cs │ ├── RavenTestBase.ReshardingTestBase.cs │ ├── RavenTestBase.Samples.cs │ ├── RavenTestBase.ShardedBackupTestBase.cs │ ├── RavenTestBase.ShardedEtlTestBase.cs │ ├── RavenTestBase.ShardedReplicationTestBase.cs │ ├── RavenTestBase.ShardedSubscriptionTestBase.cs │ ├── RavenTestBase.Sharding.cs │ ├── RavenTestBase.TimeSeries.cs │ ├── RavenTestBase.cs │ ├── RavenTestCategory.cs │ ├── RavenTestHelper.cs │ ├── RavenTestWithLabel.cs │ ├── RavenTheoryAttribute.cs │ ├── ReplicationInstance.cs │ ├── ReplicationManager.cs │ ├── ReplicationTestBase.cs │ ├── RequiresElasticSearchRetryFactAttribute.cs │ ├── RequiresKafkaRetryFactAttribute.cs │ ├── RequiresMongoDBFactAttribute.cs │ ├── RequiresMsSqlFactAttribute.cs │ ├── RequiresMsSqlInlineData.cs │ ├── RequiresMsSqlRetryFactAttribute.cs │ ├── RequiresMsSqlRetryTheoryAttribute.cs │ ├── RequiresMySqlFactAttribute.cs │ ├── RequiresMySqlInlineData.cs │ ├── RequiresNpgSqlFactAttribute.cs │ ├── RequiresNpgSqlInlineData.cs │ ├── RequiresOracleSqlFactAttribute.cs │ ├── RequiresOracleSqlInlineData.cs │ ├── RequiresRabbitMqRetryFactAttribute.cs │ ├── SkippableFact.cs │ ├── SkippableTest.cs │ ├── TestBase.cs │ ├── TestCertificatesHolder.cs │ ├── TestExtensions.cs │ ├── TestMetrics │ │ ├── TcpStatisticsProvider.cs │ │ ├── TestResourceSnapshotWriter.cs │ │ └── TestResourcesAnalyzerMetricCacher.cs │ ├── Tests.Infrastructure.csproj │ ├── TimeBombedFactAttribute.cs │ ├── Utils │ │ ├── CertificateGenerator.cs │ │ ├── DebugHelper.cs │ │ ├── DebugPackageHandler.cs │ │ ├── DisposableAsyncAction.cs │ │ ├── DummyWebSocket.cs │ │ ├── MaintenanceOperationExecutorTester.cs │ │ ├── SessionTester.cs │ │ ├── TestOutcomeAnalyzer.cs │ │ └── UniqueDatabaseInstanceKey.cs │ └── XunitExtensions │ │ ├── PerformanceTestAssemblyRunner.cs │ │ ├── PerformanceTestClassRunner.cs │ │ ├── PerformanceTestCollectionRunner.cs │ │ ├── PerformanceTestExecutor.cs │ │ ├── PerformanceTestFramework.cs │ │ └── RavenTraitDiscoverer.cs ├── Tryouts │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── Tryouts.csproj ├── xunit.runner.CI.json └── xunit.runner.json ├── testInLoop.sh ├── tools ├── Directory.Build.props ├── Raven.Debug │ ├── CommandLineApp.cs │ ├── Dump │ │ ├── Dumper.Windows.cs │ │ └── Dumper.cs │ ├── GCDump │ │ ├── DotNetHeapDumpGraphReader.cs │ │ ├── DotNetHeapInfo.cs │ │ ├── EventPipeDotNetHeapDumper.cs │ │ ├── GCHeapDump.cs │ │ ├── GCHeapDumper.cs │ │ ├── Graph.cs │ │ └── MemoryGraph.cs │ ├── LogTrafficWatch │ │ ├── LogTrafficWatch.cs │ │ ├── TrafficWatchReplay.cs │ │ └── WebSocketStream.cs │ ├── Program.cs │ ├── Raven.Debug.csproj │ ├── StackTrace │ │ ├── StackInfo.cs │ │ └── StackTracer.cs │ └── Utils │ │ ├── CommandLineApplicationExtensions.cs │ │ └── PosixFileExtensions.cs ├── Raven.Migrator │ ├── AbstractMigrationConfiguration.cs │ ├── CollectionsInfo.cs │ ├── CommandLineApp.cs │ ├── CosmosDB │ │ ├── CosmosDBConfiguration.cs │ │ └── CosmosDBMigrator.cs │ ├── DatabaseInfo.cs │ ├── DatabasesInfo.cs │ ├── DisposableAction.cs │ ├── INoSqlMigrator.cs │ ├── MigrationHelpers.cs │ ├── MongoDB │ │ ├── MongoDBConfiguration.cs │ │ └── MongoDBMigrator.cs │ ├── Program.cs │ └── Raven.Migrator.csproj ├── TypingsGenerator │ ├── ConfigurationExporter.cs │ ├── CustomScripter.cs │ ├── EndpointsExporter.cs │ ├── IconsExporter.cs │ ├── Program.cs │ ├── TypeReaderWithIgnoreMethods.cs │ └── TypingsGenerator.csproj ├── Voron.Dictionary.Generator │ ├── Program.cs │ ├── Voron.Dictionary.Generator.csproj │ ├── english.txt │ ├── french.txt │ ├── german.txt │ ├── italian.txt │ ├── japanese.txt │ ├── sources.md │ └── spanish.txt ├── Voron.Recovery │ ├── CommandLineApp.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Recovery.cs │ ├── Voron.Recovery.csproj │ └── VoronRecoveryConfiguration.cs ├── git │ └── pre-commit └── rvn │ ├── AdminChannel.cs │ ├── CommandLineApp.cs │ ├── HelmInfo.cs │ ├── InitSetupParams.cs │ ├── LogStream.cs │ ├── OfflineOperations.cs │ ├── Program.cs │ ├── Utils │ └── ServerProcessUtil.cs │ ├── WindowsService.cs │ └── rvn.csproj └── upload.ps1 /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/FastTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/.github/workflows/FastTests.yml -------------------------------------------------------------------------------- /.github/workflows/FastTestsARM.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/.github/workflows/FastTestsARM.yml -------------------------------------------------------------------------------- /.github/workflows/StudioTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/.github/workflows/StudioTests.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/.github/workflows/compile.yml -------------------------------------------------------------------------------- /.github/workflows/conventions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/.github/workflows/conventions.yml -------------------------------------------------------------------------------- /.github/workflows/studioConventions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/.github/workflows/studioConventions.yml -------------------------------------------------------------------------------- /.github/workflows/studioLabel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/.github/workflows/studioLabel.yml -------------------------------------------------------------------------------- /.github/workflows/versionLabel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/.github/workflows/versionLabel.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/NuGet.Config -------------------------------------------------------------------------------- /RavenDB.Client.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/RavenDB.Client.ruleset -------------------------------------------------------------------------------- /RavenDB.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/RavenDB.ruleset -------------------------------------------------------------------------------- /RavenDB.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/RavenDB.sln -------------------------------------------------------------------------------- /RavenDB.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/RavenDB.sln.DotSettings -------------------------------------------------------------------------------- /RavenDB.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/RavenDB.snk -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bench/BulkInsert.Benchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/BulkInsert.Benchmark/Program.cs -------------------------------------------------------------------------------- /bench/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Directory.Build.props -------------------------------------------------------------------------------- /bench/Indexing.Benchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Indexing.Benchmark/Program.cs -------------------------------------------------------------------------------- /bench/Indexing.Benchmark/ProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Indexing.Benchmark/ProgressBar.cs -------------------------------------------------------------------------------- /bench/Micro.Benchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Micro.Benchmark/Program.cs -------------------------------------------------------------------------------- /bench/Regression.Benchmark/BenchBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Regression.Benchmark/BenchBase.cs -------------------------------------------------------------------------------- /bench/Regression.Benchmark/Data/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Regression.Benchmark/Data/1.json -------------------------------------------------------------------------------- /bench/Regression.Benchmark/Data/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Regression.Benchmark/Data/2.json -------------------------------------------------------------------------------- /bench/Regression.Benchmark/Data/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Regression.Benchmark/Data/3.json -------------------------------------------------------------------------------- /bench/Scripts/batch-writes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Scripts/batch-writes.lua -------------------------------------------------------------------------------- /bench/Scripts/consistent-questions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Scripts/consistent-questions.lua -------------------------------------------------------------------------------- /bench/Scripts/debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Scripts/debug.lua -------------------------------------------------------------------------------- /bench/Scripts/full-radnom-reads.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Scripts/full-radnom-reads.lua -------------------------------------------------------------------------------- /bench/Scripts/locustfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Scripts/locustfile.py -------------------------------------------------------------------------------- /bench/Scripts/queries.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Scripts/queries.lua -------------------------------------------------------------------------------- /bench/Scripts/raven-wrk-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Scripts/raven-wrk-test.sh -------------------------------------------------------------------------------- /bench/Scripts/reads.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Scripts/reads.lua -------------------------------------------------------------------------------- /bench/Scripts/writes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Scripts/writes.lua -------------------------------------------------------------------------------- /bench/TimeSeries.Benchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/TimeSeries.Benchmark/Program.cs -------------------------------------------------------------------------------- /bench/Voron.Benchmark/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Voron.Benchmark/Configuration.cs -------------------------------------------------------------------------------- /bench/Voron.Benchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Voron.Benchmark/Program.cs -------------------------------------------------------------------------------- /bench/Voron.Benchmark/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/Voron.Benchmark/Utils.cs -------------------------------------------------------------------------------- /bench/VxSort.Benchmark/.gitignore: -------------------------------------------------------------------------------- 1 | BenchmarkDotNet.Artifacts 2 | -------------------------------------------------------------------------------- /bench/VxSort.Benchmark/Bench.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/VxSort.Benchmark/Bench.cs -------------------------------------------------------------------------------- /bench/VxSort.Benchmark/SortBench.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/VxSort.Benchmark/SortBench.cs -------------------------------------------------------------------------------- /bench/VxSort.Benchmark/drop-to-console.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sudo systemctl isolate multi-user.target 3 | -------------------------------------------------------------------------------- /bench/VxSort.Benchmark/prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/VxSort.Benchmark/prep.sh -------------------------------------------------------------------------------- /bench/VxSort.Benchmark/restore-gfx.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sudo systemctl isolate graphical.target 3 | -------------------------------------------------------------------------------- /bench/VxSort.Benchmark/run.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/VxSort.Benchmark/run.cmd -------------------------------------------------------------------------------- /bench/VxSort.Benchmark/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/bench/VxSort.Benchmark/run.sh -------------------------------------------------------------------------------- /debug.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/debug.Dockerfile -------------------------------------------------------------------------------- /docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/.gitignore -------------------------------------------------------------------------------- /docker/build-nanoserver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/build-nanoserver.ps1 -------------------------------------------------------------------------------- /docker/build-ubuntu.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/build-ubuntu.ps1 -------------------------------------------------------------------------------- /docker/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/common.ps1 -------------------------------------------------------------------------------- /docker/compose/linux-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/compose/linux-cluster/README.md -------------------------------------------------------------------------------- /docker/compose/linux-cluster/destroy.ps1: -------------------------------------------------------------------------------- 1 | $ErrorActionPreference = 'Stop' 2 | 3 | docker-compose rm -f -s -v 4 | -------------------------------------------------------------------------------- /docker/compose/linux-cluster/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/compose/linux-cluster/run.ps1 -------------------------------------------------------------------------------- /docker/compose/win-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/compose/win-cluster/README.md -------------------------------------------------------------------------------- /docker/compose/win-cluster/destroy.ps1: -------------------------------------------------------------------------------- 1 | $ErrorActionPreference = 'Stop' 2 | 3 | docker-compose rm -f -s -v 4 | -------------------------------------------------------------------------------- /docker/compose/win-cluster/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/compose/win-cluster/run.ps1 -------------------------------------------------------------------------------- /docker/debug/build-ubuntu-debug.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/debug/build-ubuntu-debug.ps1 -------------------------------------------------------------------------------- /docker/manifest/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/manifest/manifest.yml -------------------------------------------------------------------------------- /docker/manifest/tag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/manifest/tag.ps1 -------------------------------------------------------------------------------- /docker/publish-multiarch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/publish-multiarch.ps1 -------------------------------------------------------------------------------- /docker/publish-nanoserver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/publish-nanoserver.ps1 -------------------------------------------------------------------------------- /docker/publish-ubuntu.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/publish-ubuntu.ps1 -------------------------------------------------------------------------------- /docker/ravendb-nanoserver/run-raven.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/ravendb-nanoserver/run-raven.ps1 -------------------------------------------------------------------------------- /docker/ravendb-ubuntu/Dockerfile.x64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/ravendb-ubuntu/Dockerfile.x64 -------------------------------------------------------------------------------- /docker/ravendb-ubuntu/cert-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/ravendb-ubuntu/cert-utils.sh -------------------------------------------------------------------------------- /docker/ravendb-ubuntu/healthcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/ravendb-ubuntu/healthcheck.sh -------------------------------------------------------------------------------- /docker/ravendb-ubuntu/run-raven.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/ravendb-ubuntu/run-raven.sh -------------------------------------------------------------------------------- /docker/ravendb-ubuntu/server-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/ravendb-ubuntu/server-utils.sh -------------------------------------------------------------------------------- /docker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/readme.md -------------------------------------------------------------------------------- /docker/run-linux.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/run-linux.ps1 -------------------------------------------------------------------------------- /docker/run-nanoserver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docker/run-nanoserver.ps1 -------------------------------------------------------------------------------- /docs/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logo.png -------------------------------------------------------------------------------- /docs/Logos/RavenDBliconBlack.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logos/RavenDBliconBlack.ai -------------------------------------------------------------------------------- /docs/Logos/RavenDBliconBlack.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logos/RavenDBliconBlack.eps -------------------------------------------------------------------------------- /docs/Logos/RavenDBliconBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logos/RavenDBliconBlack.png -------------------------------------------------------------------------------- /docs/Logos/RavenDBliconBurgandy.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logos/RavenDBliconBurgandy.ai -------------------------------------------------------------------------------- /docs/Logos/RavenDBliconBurgandy.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logos/RavenDBliconBurgandy.eps -------------------------------------------------------------------------------- /docs/Logos/RavenDBliconBurgandy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logos/RavenDBliconBurgandy.png -------------------------------------------------------------------------------- /docs/Logos/RavenDBlogo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logos/RavenDBlogo.ai -------------------------------------------------------------------------------- /docs/Logos/RavenDBlogo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logos/RavenDBlogo.eps -------------------------------------------------------------------------------- /docs/Logos/RavenDBlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logos/RavenDBlogo.png -------------------------------------------------------------------------------- /docs/Logos/RavenDBlogoBlack.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logos/RavenDBlogoBlack.ai -------------------------------------------------------------------------------- /docs/Logos/RavenDBlogoBlack.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logos/RavenDBlogoBlack.eps -------------------------------------------------------------------------------- /docs/Logos/RavenDBlogoBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logos/RavenDBlogoBlack.png -------------------------------------------------------------------------------- /docs/Logos/RavenDBlogoV2.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logos/RavenDBlogoV2.ai -------------------------------------------------------------------------------- /docs/Logos/RavenDBlogoV2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logos/RavenDBlogoV2.eps -------------------------------------------------------------------------------- /docs/Logos/RavenDBlogoV2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logos/RavenDBlogoV2.png -------------------------------------------------------------------------------- /docs/Logos/RavenDBlogoV2Black.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logos/RavenDBlogoV2Black.ai -------------------------------------------------------------------------------- /docs/Logos/RavenDBlogoV2Black.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logos/RavenDBlogoV2Black.eps -------------------------------------------------------------------------------- /docs/Logos/RavenDBlogoV2Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/Logos/RavenDBlogoV2Black.png -------------------------------------------------------------------------------- /docs/acknowledgements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/acknowledgements.txt -------------------------------------------------------------------------------- /docs/agpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/agpl.txt -------------------------------------------------------------------------------- /docs/contributing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/contributing.txt -------------------------------------------------------------------------------- /docs/readme.linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/readme.linux.txt -------------------------------------------------------------------------------- /docs/readme.windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/readme.windows.txt -------------------------------------------------------------------------------- /docs/readmeScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/docs/readmeScreenshot.png -------------------------------------------------------------------------------- /git_setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/git_setup.cmd -------------------------------------------------------------------------------- /git_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/git_setup.sh -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/global.json -------------------------------------------------------------------------------- /install_build_prerequisites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/install_build_prerequisites.sh -------------------------------------------------------------------------------- /install_runtime_prerequisites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/install_runtime_prerequisites.sh -------------------------------------------------------------------------------- /libs/Jint.3.0.32-ravendb.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/Jint.3.0.32-ravendb.nupkg -------------------------------------------------------------------------------- /libs/Lucene.Net.3.0.60010.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/Lucene.Net.3.0.60010.nupkg -------------------------------------------------------------------------------- /libs/Raven.CodeAnalysis.1.0.11.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/Raven.CodeAnalysis.1.0.11.nupkg -------------------------------------------------------------------------------- /libs/XunitLogger.4.0.991.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/XunitLogger.4.0.991.nupkg -------------------------------------------------------------------------------- /libs/librvnpal/librvnpal.arm.32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/librvnpal/librvnpal.arm.32.so -------------------------------------------------------------------------------- /libs/librvnpal/librvnpal.arm.64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/librvnpal/librvnpal.arm.64.so -------------------------------------------------------------------------------- /libs/librvnpal/librvnpal.linux.x64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/librvnpal/librvnpal.linux.x64.so -------------------------------------------------------------------------------- /libs/librvnpal/librvnpal.mac.x64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/librvnpal/librvnpal.mac.x64.dylib -------------------------------------------------------------------------------- /libs/librvnpal/librvnpal.win.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/librvnpal/librvnpal.win.x64.dll -------------------------------------------------------------------------------- /libs/librvnpal/librvnpal.win.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/librvnpal/librvnpal.win.x86.dll -------------------------------------------------------------------------------- /libs/librvnpal/librvnpal.win7.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/librvnpal/librvnpal.win7.x64.dll -------------------------------------------------------------------------------- /libs/librvnpal/librvnpal.win7.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/librvnpal/librvnpal.win7.x86.dll -------------------------------------------------------------------------------- /libs/libzstd/libzstd.arm.32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/libzstd/libzstd.arm.32.so -------------------------------------------------------------------------------- /libs/libzstd/libzstd.arm.64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/libzstd/libzstd.arm.64.so -------------------------------------------------------------------------------- /libs/libzstd/libzstd.linux.x64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/libzstd/libzstd.linux.x64.so -------------------------------------------------------------------------------- /libs/libzstd/libzstd.mac.arm64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/libzstd/libzstd.mac.arm64.dylib -------------------------------------------------------------------------------- /libs/libzstd/libzstd.mac.x64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/libzstd/libzstd.mac.x64.dylib -------------------------------------------------------------------------------- /libs/libzstd/libzstd.win.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/libzstd/libzstd.win.x64.dll -------------------------------------------------------------------------------- /libs/libzstd/libzstd.win.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/libs/libzstd/libzstd.win.x86.dll -------------------------------------------------------------------------------- /publish-stable-release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/publish-stable-release.ps1 -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/Copy-FileHash.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/Copy-FileHash.ps1 -------------------------------------------------------------------------------- /scripts/Get-DestinationFilePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/Get-DestinationFilePath.ps1 -------------------------------------------------------------------------------- /scripts/archive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/archive.ps1 -------------------------------------------------------------------------------- /scripts/assets/bin/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/assets/bin/7za.exe -------------------------------------------------------------------------------- /scripts/assets/bin/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/assets/bin/nuget.exe -------------------------------------------------------------------------------- /scripts/assets/bin/tar.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/assets/bin/tar.exe -------------------------------------------------------------------------------- /scripts/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/assets/icon.png -------------------------------------------------------------------------------- /scripts/assets/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/assets/run.ps1 -------------------------------------------------------------------------------- /scripts/assets/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/assets/run.sh -------------------------------------------------------------------------------- /scripts/assets/setup-as-service.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/assets/setup-as-service.ps1 -------------------------------------------------------------------------------- /scripts/assets/uninstall-service.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/assets/uninstall-service.ps1 -------------------------------------------------------------------------------- /scripts/buildProjects.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/buildProjects.ps1 -------------------------------------------------------------------------------- /scripts/certificates/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/certificates/.gitignore -------------------------------------------------------------------------------- /scripts/certificates/bash/cert.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/certificates/bash/cert.conf -------------------------------------------------------------------------------- /scripts/checkLastExitCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/checkLastExitCode.ps1 -------------------------------------------------------------------------------- /scripts/checkPrerequisites.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/checkPrerequisites.ps1 -------------------------------------------------------------------------------- /scripts/clean.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/clean.ps1 -------------------------------------------------------------------------------- /scripts/copyAssets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/copyAssets.ps1 -------------------------------------------------------------------------------- /scripts/docker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/docker.ps1 -------------------------------------------------------------------------------- /scripts/dotnet/switch-framework.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/dotnet/switch-framework.ps1 -------------------------------------------------------------------------------- /scripts/env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/env.ps1 -------------------------------------------------------------------------------- /scripts/exec.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/exec.ps1 -------------------------------------------------------------------------------- /scripts/getScriptDirectory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/getScriptDirectory.ps1 -------------------------------------------------------------------------------- /scripts/githubActions/claSigned.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/githubActions/claSigned.ps1 -------------------------------------------------------------------------------- /scripts/githubReleases.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/githubReleases.ps1 -------------------------------------------------------------------------------- /scripts/help.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/help.ps1 -------------------------------------------------------------------------------- /scripts/linux/enable-debugging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/linux/enable-debugging.sh -------------------------------------------------------------------------------- /scripts/linux/install-daemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/linux/install-daemon.sh -------------------------------------------------------------------------------- /scripts/linux/pkg/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /scripts/linux/pkg/deb/.dockerignore: -------------------------------------------------------------------------------- 1 | vagrant 2 | dist -------------------------------------------------------------------------------- /scripts/linux/pkg/deb/assets/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/linux/pkg/deb/assets/build.sh -------------------------------------------------------------------------------- /scripts/linux/pkg/deb/assets/ravendb/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /scripts/linux/pkg/deb/assets/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/linux/pkg/deb/assets/test.sh -------------------------------------------------------------------------------- /scripts/linux/pkg/deb/build-deb.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/linux/pkg/deb/build-deb.ps1 -------------------------------------------------------------------------------- /scripts/linux/pkg/deb/build-deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/linux/pkg/deb/build-deb.sh -------------------------------------------------------------------------------- /scripts/linux/pkg/linux-packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/linux/pkg/linux-packaging.md -------------------------------------------------------------------------------- /scripts/linux/ravendb.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/linux/ravendb.service -------------------------------------------------------------------------------- /scripts/linux/ravendb.watchdog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/linux/ravendb.watchdog.sh -------------------------------------------------------------------------------- /scripts/linux/ravendbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/linux/ravendbd -------------------------------------------------------------------------------- /scripts/linux/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/linux/test/.gitignore -------------------------------------------------------------------------------- /scripts/linux/test/centos7/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/linux/test/centos7/Vagrantfile -------------------------------------------------------------------------------- /scripts/linux/test/ubuntu16/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/linux/test/ubuntu16/Vagrantfile -------------------------------------------------------------------------------- /scripts/linux/test/ubuntu18/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/linux/test/ubuntu18/Vagrantfile -------------------------------------------------------------------------------- /scripts/nuget.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/nuget.ps1 -------------------------------------------------------------------------------- /scripts/package.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/package.ps1 -------------------------------------------------------------------------------- /scripts/raspberry-pi/ravendbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/raspberry-pi/ravendbd -------------------------------------------------------------------------------- /scripts/raspberry-pi/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/raspberry-pi/run.sh -------------------------------------------------------------------------------- /scripts/raspberry-pi/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/raspberry-pi/setup.sh -------------------------------------------------------------------------------- /scripts/raspberry-pi/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/raspberry-pi/start.sh -------------------------------------------------------------------------------- /scripts/raspberry-pi/updater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/raspberry-pi/updater.sh -------------------------------------------------------------------------------- /scripts/restore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/restore.ps1 -------------------------------------------------------------------------------- /scripts/runtime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/runtime.ps1 -------------------------------------------------------------------------------- /scripts/schemaInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/schemaInfo.ps1 -------------------------------------------------------------------------------- /scripts/sign.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/sign.ps1 -------------------------------------------------------------------------------- /scripts/target.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/target.ps1 -------------------------------------------------------------------------------- /scripts/updateFrameworkVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/updateFrameworkVersion.ps1 -------------------------------------------------------------------------------- /scripts/updateSourceWithBuildInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/updateSourceWithBuildInfo.ps1 -------------------------------------------------------------------------------- /scripts/updateTargetFramework.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/updateTargetFramework.ps1 -------------------------------------------------------------------------------- /scripts/upload.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/upload.ps1 -------------------------------------------------------------------------------- /scripts/validateAssembly.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/validateAssembly.ps1 -------------------------------------------------------------------------------- /scripts/validateRuntimeConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/validateRuntimeConfig.ps1 -------------------------------------------------------------------------------- /scripts/version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/scripts/version.ps1 -------------------------------------------------------------------------------- /src/CommonAssemblyInfo.Linux.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/CommonAssemblyInfo.Linux.cs -------------------------------------------------------------------------------- /src/CommonAssemblyInfo.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/CommonAssemblyInfo.Windows.cs -------------------------------------------------------------------------------- /src/CommonAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/CommonAssemblyInfo.cs -------------------------------------------------------------------------------- /src/Corax/Analyzers/Analyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Analyzers/Analyzer.cs -------------------------------------------------------------------------------- /src/Corax/Analyzers/AnalyzerScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Analyzers/AnalyzerScope.cs -------------------------------------------------------------------------------- /src/Corax/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Constants.cs -------------------------------------------------------------------------------- /src/Corax/Corax.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Corax.csproj -------------------------------------------------------------------------------- /src/Corax/FieldIndexingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/FieldIndexingMode.cs -------------------------------------------------------------------------------- /src/Corax/Indexing/IndexWriter.Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Indexing/IndexWriter.Debug.cs -------------------------------------------------------------------------------- /src/Corax/Indexing/IndexWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Indexing/IndexWriter.cs -------------------------------------------------------------------------------- /src/Corax/Indexing/IndexedField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Indexing/IndexedField.cs -------------------------------------------------------------------------------- /src/Corax/Indexing/RecordedTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Indexing/RecordedTerm.cs -------------------------------------------------------------------------------- /src/Corax/Indexing/TermIdMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Indexing/TermIdMask.cs -------------------------------------------------------------------------------- /src/Corax/IndexingEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/IndexingEnvironment.cs -------------------------------------------------------------------------------- /src/Corax/Mappings/FieldMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Mappings/FieldMetadata.cs -------------------------------------------------------------------------------- /src/Corax/Mappings/IndexFieldBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Mappings/IndexFieldBinding.cs -------------------------------------------------------------------------------- /src/Corax/Pipeline/ExactTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Pipeline/ExactTransformer.cs -------------------------------------------------------------------------------- /src/Corax/Pipeline/FilterTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Pipeline/FilterTransformer.cs -------------------------------------------------------------------------------- /src/Corax/Pipeline/IFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Pipeline/IFilter.cs -------------------------------------------------------------------------------- /src/Corax/Pipeline/ITokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Pipeline/ITokenizer.cs -------------------------------------------------------------------------------- /src/Corax/Pipeline/ITransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Pipeline/ITransformer.cs -------------------------------------------------------------------------------- /src/Corax/Pipeline/KeywordTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Pipeline/KeywordTokenizer.cs -------------------------------------------------------------------------------- /src/Corax/Pipeline/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Pipeline/Token.cs -------------------------------------------------------------------------------- /src/Corax/Querying/IndexSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Querying/IndexSearcher.cs -------------------------------------------------------------------------------- /src/Corax/Querying/Matches/TermMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Querying/Matches/TermMatch.cs -------------------------------------------------------------------------------- /src/Corax/Querying/SpatialReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Querying/SpatialReader.cs -------------------------------------------------------------------------------- /src/Corax/Querying/TermsReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Querying/TermsReader.cs -------------------------------------------------------------------------------- /src/Corax/SupportedFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/SupportedFeatures.cs -------------------------------------------------------------------------------- /src/Corax/Utils/BlittableIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Utils/BlittableIterator.cs -------------------------------------------------------------------------------- /src/Corax/Utils/Bm25Relevance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Utils/Bm25Relevance.cs -------------------------------------------------------------------------------- /src/Corax/Utils/ByteStringIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Utils/ByteStringIterator.cs -------------------------------------------------------------------------------- /src/Corax/Utils/EmptyIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Utils/EmptyIterator.cs -------------------------------------------------------------------------------- /src/Corax/Utils/EntryIdEncodings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Utils/EntryIdEncodings.cs -------------------------------------------------------------------------------- /src/Corax/Utils/EntryTermsReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Utils/EntryTermsReader.cs -------------------------------------------------------------------------------- /src/Corax/Utils/EntryTermsWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Utils/EntryTermsWriter.cs -------------------------------------------------------------------------------- /src/Corax/Utils/FieldsCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Utils/FieldsCache.cs -------------------------------------------------------------------------------- /src/Corax/Utils/ICoraxStatsScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Utils/ICoraxStatsScope.cs -------------------------------------------------------------------------------- /src/Corax/Utils/OrderMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Utils/OrderMetadata.cs -------------------------------------------------------------------------------- /src/Corax/Utils/Spatial/SpatialUnits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Utils/Spatial/SpatialUnits.cs -------------------------------------------------------------------------------- /src/Corax/Utils/Spatial/SpatialUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Utils/Spatial/SpatialUtils.cs -------------------------------------------------------------------------------- /src/Corax/Utils/SuggestionsKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Utils/SuggestionsKeys.cs -------------------------------------------------------------------------------- /src/Corax/Utils/TermQueryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Utils/TermQueryItem.cs -------------------------------------------------------------------------------- /src/Corax/Utils/TimeFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Corax/Utils/TimeFields.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/Raven.Client/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Constants.cs -------------------------------------------------------------------------------- /src/Raven.Client/Conventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Conventions.cs -------------------------------------------------------------------------------- /src/Raven.Client/DocumentationUrls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/DocumentationUrls.cs -------------------------------------------------------------------------------- /src/Raven.Client/Http/HttpCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Http/HttpCache.cs -------------------------------------------------------------------------------- /src/Raven.Client/Http/NodeSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Http/NodeSelector.cs -------------------------------------------------------------------------------- /src/Raven.Client/Http/RavenCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Http/RavenCommand.cs -------------------------------------------------------------------------------- /src/Raven.Client/Http/ServerNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Http/ServerNode.cs -------------------------------------------------------------------------------- /src/Raven.Client/Http/Topology.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Http/Topology.cs -------------------------------------------------------------------------------- /src/Raven.Client/Http/TopologyHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Http/TopologyHash.cs -------------------------------------------------------------------------------- /src/Raven.Client/Json/BlittablePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Json/BlittablePath.cs -------------------------------------------------------------------------------- /src/Raven.Client/Json/TypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Json/TypeConverter.cs -------------------------------------------------------------------------------- /src/Raven.Client/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Parameters.cs -------------------------------------------------------------------------------- /src/Raven.Client/Raven.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Raven.Client.csproj -------------------------------------------------------------------------------- /src/Raven.Client/ServerWide/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/ServerWide/Helpers.cs -------------------------------------------------------------------------------- /src/Raven.Client/Util/AsyncHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Util/AsyncHelpers.cs -------------------------------------------------------------------------------- /src/Raven.Client/Util/HttpMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Util/HttpMethods.cs -------------------------------------------------------------------------------- /src/Raven.Client/Util/Metrics/EWMA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Util/Metrics/EWMA.cs -------------------------------------------------------------------------------- /src/Raven.Client/Util/ReflectionUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Util/ReflectionUtil.cs -------------------------------------------------------------------------------- /src/Raven.Client/Util/RunningOn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Util/RunningOn.cs -------------------------------------------------------------------------------- /src/Raven.Client/Util/Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Util/Size.cs -------------------------------------------------------------------------------- /src/Raven.Client/Util/SystemTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Util/SystemTime.cs -------------------------------------------------------------------------------- /src/Raven.Client/Util/TcpUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Client/Util/TcpUtils.cs -------------------------------------------------------------------------------- /src/Raven.Embedded/DatabaseOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Embedded/DatabaseOptions.cs -------------------------------------------------------------------------------- /src/Raven.Embedded/EmbeddedServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Embedded/EmbeddedServer.cs -------------------------------------------------------------------------------- /src/Raven.Embedded/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Embedded/ProcessHelper.cs -------------------------------------------------------------------------------- /src/Raven.Embedded/RavenServerRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Embedded/RavenServerRunner.cs -------------------------------------------------------------------------------- /src/Raven.Embedded/ServerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Embedded/ServerOptions.cs -------------------------------------------------------------------------------- /src/Raven.Pal/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/README.txt -------------------------------------------------------------------------------- /src/Raven.Pal/Raven.Pal.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/Raven.Pal.vcxproj -------------------------------------------------------------------------------- /src/Raven.Pal/Raven.Pal.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/Raven.Pal.vcxproj.filters -------------------------------------------------------------------------------- /src/Raven.Pal/build-all-posix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/build-all-posix.sh -------------------------------------------------------------------------------- /src/Raven.Pal/build-all-windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/build-all-windows.bat -------------------------------------------------------------------------------- /src/Raven.Pal/build-all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/build-all.ps1 -------------------------------------------------------------------------------- /src/Raven.Pal/build-libs/.gitignore: -------------------------------------------------------------------------------- 1 | *.xz -------------------------------------------------------------------------------- /src/Raven.Pal/build-libs/colors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/build-libs/colors.sh -------------------------------------------------------------------------------- /src/Raven.Pal/build-libs/crossbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/build-libs/crossbuild.sh -------------------------------------------------------------------------------- /src/Raven.Pal/build-libs/libsodium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/build-libs/libsodium.sh -------------------------------------------------------------------------------- /src/Raven.Pal/build-libs/zstd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/build-libs/zstd.sh -------------------------------------------------------------------------------- /src/Raven.Pal/build-sodium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/build-sodium.sh -------------------------------------------------------------------------------- /src/Raven.Pal/build-zstd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/build-zstd.ps1 -------------------------------------------------------------------------------- /src/Raven.Pal/inc/internal_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/inc/internal_posix.h -------------------------------------------------------------------------------- /src/Raven.Pal/inc/internal_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/inc/internal_win.h -------------------------------------------------------------------------------- /src/Raven.Pal/inc/rvn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/inc/rvn.h -------------------------------------------------------------------------------- /src/Raven.Pal/inc/status_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/inc/status_codes.h -------------------------------------------------------------------------------- /src/Raven.Pal/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/make.sh -------------------------------------------------------------------------------- /src/Raven.Pal/pal.ver: -------------------------------------------------------------------------------- 1 | 52000 2 | -------------------------------------------------------------------------------- /src/Raven.Pal/src/fileutils_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/src/fileutils_all.c -------------------------------------------------------------------------------- /src/Raven.Pal/src/posix/fileutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/src/posix/fileutils.c -------------------------------------------------------------------------------- /src/Raven.Pal/src/posix/journal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/src/posix/journal.c -------------------------------------------------------------------------------- /src/Raven.Pal/src/posix/linuxonly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/src/posix/linuxonly.c -------------------------------------------------------------------------------- /src/Raven.Pal/src/posix/maconly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/src/posix/maconly.c -------------------------------------------------------------------------------- /src/Raven.Pal/src/posix/mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/src/posix/mapping.c -------------------------------------------------------------------------------- /src/Raven.Pal/src/posix/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/src/posix/sync.c -------------------------------------------------------------------------------- /src/Raven.Pal/src/posix/virtualmemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/src/posix/virtualmemory.c -------------------------------------------------------------------------------- /src/Raven.Pal/src/rvngetpalver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/src/rvngetpalver.c -------------------------------------------------------------------------------- /src/Raven.Pal/src/win/fileutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/src/win/fileutils.c -------------------------------------------------------------------------------- /src/Raven.Pal/src/win/geterrorstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/src/win/geterrorstring.c -------------------------------------------------------------------------------- /src/Raven.Pal/src/win/journal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/src/win/journal.c -------------------------------------------------------------------------------- /src/Raven.Pal/src/win/mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/src/win/mapping.c -------------------------------------------------------------------------------- /src/Raven.Pal/src/win/virtualmemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/src/win/virtualmemory.c -------------------------------------------------------------------------------- /src/Raven.Pal/src/win/writefileheader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Pal/src/win/writefileheader.c -------------------------------------------------------------------------------- /src/Raven.Server/Commercial/License.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Commercial/License.cs -------------------------------------------------------------------------------- /src/Raven.Server/Documents/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Documents/Document.cs -------------------------------------------------------------------------------- /src/Raven.Server/Documents/Tombstone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Documents/Tombstone.cs -------------------------------------------------------------------------------- /src/Raven.Server/EventListener/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/EventListener/Event.cs -------------------------------------------------------------------------------- /src/Raven.Server/Indexing/MmapStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Indexing/MmapStream.cs -------------------------------------------------------------------------------- /src/Raven.Server/Indexing/VoronState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Indexing/VoronState.cs -------------------------------------------------------------------------------- /src/Raven.Server/Integrations/PostgreSQL/Npgsql/current_setting_query.csv: -------------------------------------------------------------------------------- 1 | "current_setting" 2 | "32" 3 | -------------------------------------------------------------------------------- /src/Raven.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Program.cs -------------------------------------------------------------------------------- /src/Raven.Server/Properties/Settings/settings.docker.posix.json: -------------------------------------------------------------------------------- 1 | {} 2 | 3 | -------------------------------------------------------------------------------- /src/Raven.Server/Properties/Settings/settings.docker.windows.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/Raven.Server/Properties/VersionInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Raven.Server/Rachis/Candidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Rachis/Candidate.cs -------------------------------------------------------------------------------- /src/Raven.Server/Rachis/Elector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Rachis/Elector.cs -------------------------------------------------------------------------------- /src/Raven.Server/Rachis/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Rachis/Exceptions.cs -------------------------------------------------------------------------------- /src/Raven.Server/Rachis/Follower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Rachis/Follower.cs -------------------------------------------------------------------------------- /src/Raven.Server/Rachis/Leader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Rachis/Leader.cs -------------------------------------------------------------------------------- /src/Raven.Server/Rachis/LogSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Rachis/LogSummary.cs -------------------------------------------------------------------------------- /src/Raven.Server/Rachis/Negotiation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Rachis/Negotiation.cs -------------------------------------------------------------------------------- /src/Raven.Server/Rachis/RachisHello.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Rachis/RachisHello.cs -------------------------------------------------------------------------------- /src/Raven.Server/Rachis/RequestVote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Rachis/RequestVote.cs -------------------------------------------------------------------------------- /src/Raven.Server/Rachis/TimeoutEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Rachis/TimeoutEvent.cs -------------------------------------------------------------------------------- /src/Raven.Server/Raven.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Raven.Server.csproj -------------------------------------------------------------------------------- /src/Raven.Server/RavenServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/RavenServer.cs -------------------------------------------------------------------------------- /src/Raven.Server/RavenServerStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/RavenServerStartup.cs -------------------------------------------------------------------------------- /src/Raven.Server/Routing/CorsMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Routing/CorsMode.cs -------------------------------------------------------------------------------- /src/Raven.Server/Routing/Trie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Routing/Trie.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/AsyncLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/AsyncLock.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/BackupUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/BackupUtils.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/ChangeVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/ChangeVector.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/Cli/RavenCli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/Cli/RavenCli.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/Cpu/CpuHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/Cpu/CpuHelper.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/CultureHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/CultureHelper.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/EchoServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/EchoServer.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/FileLocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/FileLocker.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/IOExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/IOExtensions.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/IncludeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/IncludeUtil.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/LruDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/LruDictionary.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/MetricCacher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/MetricCacher.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/Metrics/Clock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/Metrics/Clock.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/Metrics/EWMA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/Metrics/EWMA.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/PartialStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/PartialStream.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/Pipes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/Pipes.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/PoolOfThreads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/PoolOfThreads.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/PosixFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/PosixFile.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/Reference.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/SecurityUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/SecurityUtils.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/ShardHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/ShardHelper.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/ThreadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/ThreadHelper.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/ThreadsUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/ThreadsUsage.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/TypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/TypeConverter.cs -------------------------------------------------------------------------------- /src/Raven.Server/Utils/UrlUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Utils/UrlUtil.cs -------------------------------------------------------------------------------- /src/Raven.Server/Web/Assets/Unsafe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Web/Assets/Unsafe.html -------------------------------------------------------------------------------- /src/Raven.Server/Web/HtmlUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Web/HtmlUtil.cs -------------------------------------------------------------------------------- /src/Raven.Server/Web/RequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/Web/RequestHandler.cs -------------------------------------------------------------------------------- /src/Raven.Server/settings.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Server/settings.default.json -------------------------------------------------------------------------------- /src/Raven.Studio/.babelrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/.babelrc.json -------------------------------------------------------------------------------- /src/Raven.Studio/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/.eslintrc.js -------------------------------------------------------------------------------- /src/Raven.Studio/.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | -------------------------------------------------------------------------------- /src/Raven.Studio/.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /src/Raven.Studio/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/.prettierignore -------------------------------------------------------------------------------- /src/Raven.Studio/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/.prettierrc.json -------------------------------------------------------------------------------- /src/Raven.Studio/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/.storybook/main.ts -------------------------------------------------------------------------------- /src/Raven.Studio/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/.storybook/preview.js -------------------------------------------------------------------------------- /src/Raven.Studio/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/Program.cs -------------------------------------------------------------------------------- /src/Raven.Studio/Raven.Studio.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/Raven.Studio.csproj -------------------------------------------------------------------------------- /src/Raven.Studio/aceBuild/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ -------------------------------------------------------------------------------- /src/Raven.Studio/aceBuild/.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /src/Raven.Studio/aceBuild/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/aceBuild/README.txt -------------------------------------------------------------------------------- /src/Raven.Studio/aceBuild/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/aceBuild/package.json -------------------------------------------------------------------------------- /src/Raven.Studio/eslint-local-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/eslint-local-rules.js -------------------------------------------------------------------------------- /src/Raven.Studio/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/jest.config.js -------------------------------------------------------------------------------- /src/Raven.Studio/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/package-lock.json -------------------------------------------------------------------------------- /src/Raven.Studio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/package.json -------------------------------------------------------------------------------- /src/Raven.Studio/scripts/fsUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/scripts/fsUtils.js -------------------------------------------------------------------------------- /src/Raven.Studio/scripts/setup_jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/scripts/setup_jest.js -------------------------------------------------------------------------------- /src/Raven.Studio/scripts/typings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/scripts/typings.js -------------------------------------------------------------------------------- /src/Raven.Studio/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/tsconfig.json -------------------------------------------------------------------------------- /src/Raven.Studio/typescript/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/typescript/main.ts -------------------------------------------------------------------------------- /src/Raven.Studio/typescript/test/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /src/Raven.Studio/typescript/test/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /src/Raven.Studio/typings/tsd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/typings/tsd.d.ts -------------------------------------------------------------------------------- /src/Raven.Studio/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/webpack.config.js -------------------------------------------------------------------------------- /src/Raven.Studio/wwwroot/App/views/database/status/statistics.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Raven.Studio/wwwroot/Content/ace/mode-text.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Raven.Studio/wwwroot/Content/css/bs5-styles-classic.scss: -------------------------------------------------------------------------------- 1 | $theme: "classic"; 2 | 3 | @import "bs5"; 4 | -------------------------------------------------------------------------------- /src/Raven.Studio/wwwroot/Content/css/bs5-styles-light.scss: -------------------------------------------------------------------------------- 1 | $theme: "light"; 2 | 3 | @import "bs5"; 4 | -------------------------------------------------------------------------------- /src/Raven.Studio/wwwroot/Content/css/bs5-styles.scss: -------------------------------------------------------------------------------- 1 | $theme: "default"; 2 | 3 | @import "bs5"; 4 | -------------------------------------------------------------------------------- /src/Raven.Studio/wwwroot/Content/css/pages/documents.less: -------------------------------------------------------------------------------- 1 | .documents { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/Raven.Studio/wwwroot/Content/css/pages/tasks-csvImport.less: -------------------------------------------------------------------------------- 1 | .csvImport { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/Raven.Studio/wwwroot/Content/css/themes/classic-theme-variables-override.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Raven.Studio/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/wwwroot/index.html -------------------------------------------------------------------------------- /src/Raven.Studio/wwwroot/version.txt: -------------------------------------------------------------------------------- 1 | { "Version": "6.2.0-custom-62" } 2 | -------------------------------------------------------------------------------- /src/Raven.Studio/wwwroot/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.Studio/wwwroot/web.config -------------------------------------------------------------------------------- /src/Raven.TestDriver/RavenTestDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Raven.TestDriver/RavenTestDriver.cs -------------------------------------------------------------------------------- /src/Sparrow.Server/Binary/Bit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/Binary/Bit.cs -------------------------------------------------------------------------------- /src/Sparrow.Server/Binary/BitReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/Binary/BitReader.cs -------------------------------------------------------------------------------- /src/Sparrow.Server/ByteString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/ByteString.cs -------------------------------------------------------------------------------- /src/Sparrow.Server/Compression/Codes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/Compression/Codes.cs -------------------------------------------------------------------------------- /src/Sparrow.Server/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/Constants.cs -------------------------------------------------------------------------------- /src/Sparrow.Server/Format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/Format.cs -------------------------------------------------------------------------------- /src/Sparrow.Server/IoChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/IoChange.cs -------------------------------------------------------------------------------- /src/Sparrow.Server/Meters/IoMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/Meters/IoMetrics.cs -------------------------------------------------------------------------------- /src/Sparrow.Server/Platform/Pal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/Platform/Pal.cs -------------------------------------------------------------------------------- /src/Sparrow.Server/Platform/PalFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/Platform/PalFlags.cs -------------------------------------------------------------------------------- /src/Sparrow.Server/Sodium.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/Sodium.tt -------------------------------------------------------------------------------- /src/Sparrow.Server/UnmanagedSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/UnmanagedSpan.cs -------------------------------------------------------------------------------- /src/Sparrow.Server/Utils/Base64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/Utils/Base64.cs -------------------------------------------------------------------------------- /src/Sparrow.Server/Utils/DiffPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/Utils/DiffPages.cs -------------------------------------------------------------------------------- /src/Sparrow.Server/Utils/DiskUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/Utils/DiskUtils.cs -------------------------------------------------------------------------------- /src/Sparrow.Server/Utils/EchoStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/Utils/EchoStream.cs -------------------------------------------------------------------------------- /src/Sparrow.Server/Utils/Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/Utils/Sorting.cs -------------------------------------------------------------------------------- /src/Sparrow.Server/Utils/ThreadNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/Utils/ThreadNames.cs -------------------------------------------------------------------------------- /src/Sparrow.Server/Utils/VxSort/codegen/run.cmd: -------------------------------------------------------------------------------- 1 | python main.py --output-dir .. -------------------------------------------------------------------------------- /src/Sparrow.Server/sodium-api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow.Server/sodium-api.txt -------------------------------------------------------------------------------- /src/Sparrow/AdvInstructionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/AdvInstructionSet.cs -------------------------------------------------------------------------------- /src/Sparrow/Binary/BitVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Binary/BitVector.cs -------------------------------------------------------------------------------- /src/Sparrow/Binary/Bits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Binary/Bits.cs -------------------------------------------------------------------------------- /src/Sparrow/Binary/Numbers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Binary/Numbers.cs -------------------------------------------------------------------------------- /src/Sparrow/Binary/PtrBitVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Binary/PtrBitVector.cs -------------------------------------------------------------------------------- /src/Sparrow/Branchless.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Branchless.cs -------------------------------------------------------------------------------- /src/Sparrow/Collections/FastList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Collections/FastList.cs -------------------------------------------------------------------------------- /src/Sparrow/Collections/FastStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Collections/FastStack.cs -------------------------------------------------------------------------------- /src/Sparrow/Comparers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Comparers.cs -------------------------------------------------------------------------------- /src/Sparrow/Compression/LZ4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Compression/LZ4.cs -------------------------------------------------------------------------------- /src/Sparrow/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Constants.cs -------------------------------------------------------------------------------- /src/Sparrow/Debugging/DebugStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Debugging/DebugStuff.cs -------------------------------------------------------------------------------- /src/Sparrow/DefaultFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/DefaultFormat.cs -------------------------------------------------------------------------------- /src/Sparrow/Encodings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Encodings.cs -------------------------------------------------------------------------------- /src/Sparrow/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/Sparrow/Hashing.Streamed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Hashing.Streamed.cs -------------------------------------------------------------------------------- /src/Sparrow/Hashing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Hashing.cs -------------------------------------------------------------------------------- /src/Sparrow/Json/BlittableJsonToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Json/BlittableJsonToken.cs -------------------------------------------------------------------------------- /src/Sparrow/Json/BlittableWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Json/BlittableWriter.cs -------------------------------------------------------------------------------- /src/Sparrow/Json/CachedProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Json/CachedProperties.cs -------------------------------------------------------------------------------- /src/Sparrow/Json/JsonContextPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Json/JsonContextPool.cs -------------------------------------------------------------------------------- /src/Sparrow/Json/JsonContextPoolBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Json/JsonContextPoolBase.cs -------------------------------------------------------------------------------- /src/Sparrow/Json/LazyNumberValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Json/LazyNumberValue.cs -------------------------------------------------------------------------------- /src/Sparrow/Json/LazyStringParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Json/LazyStringParser.cs -------------------------------------------------------------------------------- /src/Sparrow/Json/LazyStringValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Json/LazyStringValue.cs -------------------------------------------------------------------------------- /src/Sparrow/Json/Parsing/IJsonParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Json/Parsing/IJsonParser.cs -------------------------------------------------------------------------------- /src/Sparrow/Json/PathCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Json/PathCache.cs -------------------------------------------------------------------------------- /src/Sparrow/Json/PerCoreContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Json/PerCoreContainer.cs -------------------------------------------------------------------------------- /src/Sparrow/Logging/LogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Logging/LogEntry.cs -------------------------------------------------------------------------------- /src/Sparrow/Logging/LogMessageEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Logging/LogMessageEntry.cs -------------------------------------------------------------------------------- /src/Sparrow/Logging/LogMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Logging/LogMode.cs -------------------------------------------------------------------------------- /src/Sparrow/Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Logging/Logger.cs -------------------------------------------------------------------------------- /src/Sparrow/Logging/LoggingFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Logging/LoggingFilter.cs -------------------------------------------------------------------------------- /src/Sparrow/Logging/LoggingSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Logging/LoggingSource.cs -------------------------------------------------------------------------------- /src/Sparrow/Memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Memory.cs -------------------------------------------------------------------------------- /src/Sparrow/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/ObjectPool.cs -------------------------------------------------------------------------------- /src/Sparrow/PeepingTomStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/PeepingTomStream.cs -------------------------------------------------------------------------------- /src/Sparrow/Platform/PlatformDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Platform/PlatformDetails.cs -------------------------------------------------------------------------------- /src/Sparrow/Platform/Sodium.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Platform/Sodium.cs -------------------------------------------------------------------------------- /src/Sparrow/Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Size.cs -------------------------------------------------------------------------------- /src/Sparrow/Sorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Sorter.cs -------------------------------------------------------------------------------- /src/Sparrow/SpanEnumerators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/SpanEnumerators.cs -------------------------------------------------------------------------------- /src/Sparrow/Sparrow.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Sparrow.csproj -------------------------------------------------------------------------------- /src/Sparrow/StringComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/StringComparer.cs -------------------------------------------------------------------------------- /src/Sparrow/StringSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/StringSegment.cs -------------------------------------------------------------------------------- /src/Sparrow/StringSegmentComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/StringSegmentComparer.cs -------------------------------------------------------------------------------- /src/Sparrow/Threading/DisposeOnce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Threading/DisposeOnce.cs -------------------------------------------------------------------------------- /src/Sparrow/Threading/SingleUseFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Threading/SingleUseFlag.cs -------------------------------------------------------------------------------- /src/Sparrow/TimeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/TimeValue.cs -------------------------------------------------------------------------------- /src/Sparrow/TypesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/TypesHelper.cs -------------------------------------------------------------------------------- /src/Sparrow/UnmanagedMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/UnmanagedMemory.cs -------------------------------------------------------------------------------- /src/Sparrow/UnmanagedPointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/UnmanagedPointer.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/ConcatStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/ConcatStream.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/DecimalHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/DecimalHelper.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/DevelopmentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/DevelopmentHelper.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/DisposeLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/DisposeLock.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/FifoSemaphore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/FifoSemaphore.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/MemoryUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/MemoryUtils.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/NativeMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/NativeMemory.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/PooledItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/PooledItem.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/ProcessorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/ProcessorInfo.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/SafeFileStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/SafeFileStream.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/Sizes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/Sizes.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/StackHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/StackHeader.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/StackNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/StackNode.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/ThreadLocalCleanup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/ThreadLocalCleanup.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/ThreadingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/ThreadingHelper.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/TimeoutManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/TimeoutManager.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/TypeCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/TypeCache.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/TypeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/TypeUtils.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/WhoIsLocking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/WhoIsLocking.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/ZstdLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/ZstdLib.cs -------------------------------------------------------------------------------- /src/Sparrow/Utils/ZstdStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Sparrow/Utils/ZstdStream.cs -------------------------------------------------------------------------------- /src/Voron/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Constants.cs -------------------------------------------------------------------------------- /src/Voron/Data/BTrees/Tree.MultiTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/BTrees/Tree.MultiTree.cs -------------------------------------------------------------------------------- /src/Voron/Data/BTrees/Tree.Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/BTrees/Tree.Stream.cs -------------------------------------------------------------------------------- /src/Voron/Data/BTrees/Tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/BTrees/Tree.cs -------------------------------------------------------------------------------- /src/Voron/Data/BTrees/TreeCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/BTrees/TreeCursor.cs -------------------------------------------------------------------------------- /src/Voron/Data/BTrees/TreeFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/BTrees/TreeFlags.cs -------------------------------------------------------------------------------- /src/Voron/Data/BTrees/TreeIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/BTrees/TreeIterator.cs -------------------------------------------------------------------------------- /src/Voron/Data/BTrees/TreeNodeFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/BTrees/TreeNodeFlags.cs -------------------------------------------------------------------------------- /src/Voron/Data/BTrees/TreeNodeHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/BTrees/TreeNodeHeader.cs -------------------------------------------------------------------------------- /src/Voron/Data/BTrees/TreePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/BTrees/TreePage.cs -------------------------------------------------------------------------------- /src/Voron/Data/BTrees/TreePageFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/BTrees/TreePageFlags.cs -------------------------------------------------------------------------------- /src/Voron/Data/BTrees/TreePageHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/BTrees/TreePageHeader.cs -------------------------------------------------------------------------------- /src/Voron/Data/BTrees/TreeRebalancer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/BTrees/TreeRebalancer.cs -------------------------------------------------------------------------------- /src/Voron/Data/BTrees/TreeRootHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/BTrees/TreeRootHeader.cs -------------------------------------------------------------------------------- /src/Voron/Data/BTrees/TreeSizeOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/BTrees/TreeSizeOf.cs -------------------------------------------------------------------------------- /src/Voron/Data/Containers/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/Containers/Container.cs -------------------------------------------------------------------------------- /src/Voron/Data/EmptyIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/EmptyIterator.cs -------------------------------------------------------------------------------- /src/Voron/Data/Fixed/FixedSizeTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/Fixed/FixedSizeTree.cs -------------------------------------------------------------------------------- /src/Voron/Data/IIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/IIterator.cs -------------------------------------------------------------------------------- /src/Voron/Data/Lookups/ILookupKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/Lookups/ILookupKey.cs -------------------------------------------------------------------------------- /src/Voron/Data/Lookups/Lookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/Lookups/Lookup.cs -------------------------------------------------------------------------------- /src/Voron/Data/Lookups/LookupState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/Lookups/LookupState.cs -------------------------------------------------------------------------------- /src/Voron/Data/PostingLists/PostingListPageFlags.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Voron/Data/RootHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/RootHeader.cs -------------------------------------------------------------------------------- /src/Voron/Data/RootObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/RootObjectType.cs -------------------------------------------------------------------------------- /src/Voron/Data/Tables/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/Tables/Table.cs -------------------------------------------------------------------------------- /src/Voron/Data/Tables/TableReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/Tables/TableReport.cs -------------------------------------------------------------------------------- /src/Voron/Data/Tables/TableSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/Tables/TableSchema.cs -------------------------------------------------------------------------------- /src/Voron/Data/VoronStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Data/VoronStream.cs -------------------------------------------------------------------------------- /src/Voron/Debugging/CommitStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Debugging/CommitStats.cs -------------------------------------------------------------------------------- /src/Voron/Debugging/DebugStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Debugging/DebugStuff.cs -------------------------------------------------------------------------------- /src/Voron/Debugging/EnvironmentStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Debugging/EnvironmentStats.cs -------------------------------------------------------------------------------- /src/Voron/Exceptions/QuotaException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Exceptions/QuotaException.cs -------------------------------------------------------------------------------- /src/Voron/GlobalFlushingBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/GlobalFlushingBehavior.cs -------------------------------------------------------------------------------- /src/Voron/GlobalPrefetchingBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/GlobalPrefetchingBehavior.cs -------------------------------------------------------------------------------- /src/Voron/Impl/Backup/BackupMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Impl/Backup/BackupMethods.cs -------------------------------------------------------------------------------- /src/Voron/Impl/Backup/FullBackup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Impl/Backup/FullBackup.cs -------------------------------------------------------------------------------- /src/Voron/Impl/EncryptionBuffersPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Impl/EncryptionBuffersPool.cs -------------------------------------------------------------------------------- /src/Voron/Impl/Journal/JournalFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Impl/Journal/JournalFile.cs -------------------------------------------------------------------------------- /src/Voron/Impl/Journal/JournalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Impl/Journal/JournalInfo.cs -------------------------------------------------------------------------------- /src/Voron/Impl/Journal/JournalReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Impl/Journal/JournalReader.cs -------------------------------------------------------------------------------- /src/Voron/Impl/Journal/JournalWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Impl/Journal/JournalWriter.cs -------------------------------------------------------------------------------- /src/Voron/Impl/LowLevelTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Impl/LowLevelTransaction.cs -------------------------------------------------------------------------------- /src/Voron/Impl/PagePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Impl/PagePosition.cs -------------------------------------------------------------------------------- /src/Voron/Impl/PagerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Impl/PagerState.cs -------------------------------------------------------------------------------- /src/Voron/Impl/Paging/AbstractPager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Impl/Paging/AbstractPager.cs -------------------------------------------------------------------------------- /src/Voron/Impl/Paging/CryptoPager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Impl/Paging/CryptoPager.cs -------------------------------------------------------------------------------- /src/Voron/Impl/SliceSmallSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Impl/SliceSmallSet.cs -------------------------------------------------------------------------------- /src/Voron/Impl/Transaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Impl/Transaction.cs -------------------------------------------------------------------------------- /src/Voron/Impl/TreeAndSliceComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Impl/TreeAndSliceComparer.cs -------------------------------------------------------------------------------- /src/Voron/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Page.cs -------------------------------------------------------------------------------- /src/Voron/PageFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/PageFlags.cs -------------------------------------------------------------------------------- /src/Voron/PageHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/PageHeader.cs -------------------------------------------------------------------------------- /src/Voron/PageHeaderUnion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/PageHeaderUnion.cs -------------------------------------------------------------------------------- /src/Voron/PageLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/PageLocator.cs -------------------------------------------------------------------------------- /src/Voron/PathInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/PathInfo.cs -------------------------------------------------------------------------------- /src/Voron/Platform/Posix/PosixHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Platform/Posix/PosixHelper.cs -------------------------------------------------------------------------------- /src/Voron/Platform/Win32/Win32Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Platform/Win32/Win32Helper.cs -------------------------------------------------------------------------------- /src/Voron/ReadResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/ReadResult.cs -------------------------------------------------------------------------------- /src/Voron/RecoveryErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/RecoveryErrorEventArgs.cs -------------------------------------------------------------------------------- /src/Voron/Schema/IVoronSchemaUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Schema/IVoronSchemaUpdate.cs -------------------------------------------------------------------------------- /src/Voron/Schema/Updates/From22.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Schema/Updates/From22.cs -------------------------------------------------------------------------------- /src/Voron/Schema/VoronSchemaUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Schema/VoronSchemaUpdater.cs -------------------------------------------------------------------------------- /src/Voron/Slice.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Slice.Extensions.cs -------------------------------------------------------------------------------- /src/Voron/Slice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Slice.cs -------------------------------------------------------------------------------- /src/Voron/SliceComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/SliceComparer.cs -------------------------------------------------------------------------------- /src/Voron/SliceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/SliceOptions.cs -------------------------------------------------------------------------------- /src/Voron/StorageEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/StorageEnvironment.cs -------------------------------------------------------------------------------- /src/Voron/StorageEnvironmentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/StorageEnvironmentOptions.cs -------------------------------------------------------------------------------- /src/Voron/TransactionFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/TransactionFlags.cs -------------------------------------------------------------------------------- /src/Voron/Util/ActiveTransactions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/ActiveTransactions.cs -------------------------------------------------------------------------------- /src/Voron/Util/Conversion/Endianness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/Conversion/Endianness.cs -------------------------------------------------------------------------------- /src/Voron/Util/Conversion/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/Conversion/readme.txt -------------------------------------------------------------------------------- /src/Voron/Util/DataCopier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/DataCopier.cs -------------------------------------------------------------------------------- /src/Voron/Util/DisposableAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/DisposableAction.cs -------------------------------------------------------------------------------- /src/Voron/Util/EndOfDiskSpaceEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/EndOfDiskSpaceEvent.cs -------------------------------------------------------------------------------- /src/Voron/Util/NativeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/NativeList.cs -------------------------------------------------------------------------------- /src/Voron/Util/PFor/BitPacking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/PFor/BitPacking.cs -------------------------------------------------------------------------------- /src/Voron/Util/PFor/FastPForDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/PFor/FastPForDecoder.cs -------------------------------------------------------------------------------- /src/Voron/Util/PFor/FastPForEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/PFor/FastPForEncoder.cs -------------------------------------------------------------------------------- /src/Voron/Util/PFor/ISimdTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/PFor/ISimdTransform.cs -------------------------------------------------------------------------------- /src/Voron/Util/PFor/MaskEntries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/PFor/MaskEntries.cs -------------------------------------------------------------------------------- /src/Voron/Util/PFor/NoTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/PFor/NoTransform.cs -------------------------------------------------------------------------------- /src/Voron/Util/PFor/PForHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/PFor/PForHeader.cs -------------------------------------------------------------------------------- /src/Voron/Util/PFor/ScalarBitPacking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/PFor/ScalarBitPacking.cs -------------------------------------------------------------------------------- /src/Voron/Util/PFor/simdfor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/PFor/simdfor.py -------------------------------------------------------------------------------- /src/Voron/Util/PageTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/PageTable.cs -------------------------------------------------------------------------------- /src/Voron/Util/PtrSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/PtrSize.cs -------------------------------------------------------------------------------- /src/Voron/Util/TableValuereaderUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/TableValuereaderUtils.cs -------------------------------------------------------------------------------- /src/Voron/Util/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Util/Utils.cs -------------------------------------------------------------------------------- /src/Voron/ValueReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/ValueReader.cs -------------------------------------------------------------------------------- /src/Voron/Voron.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/src/Voron/Voron.csproj -------------------------------------------------------------------------------- /test/BenchmarkTests/Indexing/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/BenchmarkTests/Indexing/Index.cs -------------------------------------------------------------------------------- /test/BenchmarkTests/Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/BenchmarkTests/Init.cs -------------------------------------------------------------------------------- /test/BenchmarkTests/Patching/Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/BenchmarkTests/Patching/Patch.cs -------------------------------------------------------------------------------- /test/BenchmarkTests/Storing/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/BenchmarkTests/Storing/Session.cs -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/EmbeddedTests/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/EmbeddedTests/BasicTests.cs -------------------------------------------------------------------------------- /test/EmbeddedTests/SmugglerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/EmbeddedTests/SmugglerTests.cs -------------------------------------------------------------------------------- /test/FastTests/.gitignore: -------------------------------------------------------------------------------- 1 | /test-timings.xml 2 | -------------------------------------------------------------------------------- /test/FastTests/Blittable/BlittableJsonWriterTests/Jsons/empty.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /test/FastTests/Blittable/BlittableJsonWriterTests/Jsons/poo.json: -------------------------------------------------------------------------------- 1 | { 2 | "Status": "💩" 3 | } -------------------------------------------------------------------------------- /test/FastTests/Client/BulkInserts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Client/BulkInserts.cs -------------------------------------------------------------------------------- /test/FastTests/Client/CRUD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Client/CRUD.cs -------------------------------------------------------------------------------- /test/FastTests/Client/Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Client/Delete.cs -------------------------------------------------------------------------------- /test/FastTests/Client/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Client/Events.cs -------------------------------------------------------------------------------- /test/FastTests/Client/Exists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Client/Exists.cs -------------------------------------------------------------------------------- /test/FastTests/Client/ExistsAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Client/ExistsAsync.cs -------------------------------------------------------------------------------- /test/FastTests/Client/HiLo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Client/HiLo.cs -------------------------------------------------------------------------------- /test/FastTests/Client/Includes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Client/Includes.cs -------------------------------------------------------------------------------- /test/FastTests/Client/Issue_6069.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Client/Issue_6069.cs -------------------------------------------------------------------------------- /test/FastTests/Client/Load.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Client/Load.cs -------------------------------------------------------------------------------- /test/FastTests/Client/LoadAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Client/LoadAsync.cs -------------------------------------------------------------------------------- /test/FastTests/Client/OnGoingTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Client/OnGoingTask.cs -------------------------------------------------------------------------------- /test/FastTests/Client/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Client/Query.cs -------------------------------------------------------------------------------- /test/FastTests/Client/QueryAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Client/QueryAsync.cs -------------------------------------------------------------------------------- /test/FastTests/Client/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Client/Store.cs -------------------------------------------------------------------------------- /test/FastTests/Client/TrackEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Client/TrackEntity.cs -------------------------------------------------------------------------------- /test/FastTests/Client/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Client/Update.cs -------------------------------------------------------------------------------- /test/FastTests/Client/WhatChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Client/WhatChanged.cs -------------------------------------------------------------------------------- /test/FastTests/Corax/CoraxCrud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Corax/CoraxCrud.cs -------------------------------------------------------------------------------- /test/FastTests/Corax/CoraxQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Corax/CoraxQueries.cs -------------------------------------------------------------------------------- /test/FastTests/Corax/DeleteTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Corax/DeleteTest.cs -------------------------------------------------------------------------------- /test/FastTests/Corax/Primitives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Corax/Primitives.cs -------------------------------------------------------------------------------- /test/FastTests/Corax/RawCoraxFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Corax/RawCoraxFlag.cs -------------------------------------------------------------------------------- /test/FastTests/Corax/SpatialTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Corax/SpatialTests.cs -------------------------------------------------------------------------------- /test/FastTests/Corax/Suggestions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Corax/Suggestions.cs -------------------------------------------------------------------------------- /test/FastTests/FastTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/FastTests.csproj -------------------------------------------------------------------------------- /test/FastTests/Issues/HRINT_2184.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Issues/HRINT_2184.cs -------------------------------------------------------------------------------- /test/FastTests/RavenDB_14520.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/RavenDB_14520.cs -------------------------------------------------------------------------------- /test/FastTests/Server/Basic/Crud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Server/Basic/Crud.cs -------------------------------------------------------------------------------- /test/FastTests/Server/ServerStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Server/ServerStore.cs -------------------------------------------------------------------------------- /test/FastTests/Sparrow/Bits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Sparrow/Bits.cs -------------------------------------------------------------------------------- /test/FastTests/Sparrow/Hashing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Sparrow/Hashing.cs -------------------------------------------------------------------------------- /test/FastTests/Sparrow/IoMetric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Sparrow/IoMetric.cs -------------------------------------------------------------------------------- /test/FastTests/Sparrow/LZ4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Sparrow/LZ4.cs -------------------------------------------------------------------------------- /test/FastTests/Sparrow/Memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Sparrow/Memory.cs -------------------------------------------------------------------------------- /test/FastTests/Sparrow/SmallSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Sparrow/SmallSet.cs -------------------------------------------------------------------------------- /test/FastTests/Sparrow/Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Sparrow/Sorting.cs -------------------------------------------------------------------------------- /test/FastTests/Utils/TimeParsing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Utils/TimeParsing.cs -------------------------------------------------------------------------------- /test/FastTests/Voron/Backups/Full.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Voron/Backups/Full.cs -------------------------------------------------------------------------------- /test/FastTests/Voron/Journal/Mvcc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Voron/Journal/Mvcc.cs -------------------------------------------------------------------------------- /test/FastTests/Voron/RavenDB-9847.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Voron/RavenDB-9847.cs -------------------------------------------------------------------------------- /test/FastTests/Voron/Slices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Voron/Slices.cs -------------------------------------------------------------------------------- /test/FastTests/Voron/StorageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Voron/StorageTest.cs -------------------------------------------------------------------------------- /test/FastTests/Voron/Trees/Basic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Voron/Trees/Basic.cs -------------------------------------------------------------------------------- /test/FastTests/Voron/ValidHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/Voron/ValidHeaders.cs -------------------------------------------------------------------------------- /test/FastTests/longest-tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/FastTests/longest-tests.ps1 -------------------------------------------------------------------------------- /test/InterversionTests/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/InterversionTests/BasicTests.cs -------------------------------------------------------------------------------- /test/InterversionTests/EtlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/InterversionTests/EtlTests.cs -------------------------------------------------------------------------------- /test/RachisTests/BasicCluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/RachisTests/BasicCluster.cs -------------------------------------------------------------------------------- /test/RachisTests/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/RachisTests/BasicTests.cs -------------------------------------------------------------------------------- /test/RachisTests/Cluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/RachisTests/Cluster.cs -------------------------------------------------------------------------------- /test/RachisTests/CommandsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/RachisTests/CommandsTests.cs -------------------------------------------------------------------------------- /test/RachisTests/ElectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/RachisTests/ElectionTests.cs -------------------------------------------------------------------------------- /test/RachisTests/RachisTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/RachisTests/RachisTests.csproj -------------------------------------------------------------------------------- /test/RachisTests/RavenDB-6602.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/RachisTests/RavenDB-6602.cs -------------------------------------------------------------------------------- /test/RachisTests/RavenDB_14348.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/RachisTests/RavenDB_14348.cs -------------------------------------------------------------------------------- /test/RachisTests/RavenDB_18013.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/RachisTests/RavenDB_18013.cs -------------------------------------------------------------------------------- /test/SlowTests/Bugs/AccurateCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Bugs/AccurateCount.cs -------------------------------------------------------------------------------- /test/SlowTests/Bugs/Andres.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Bugs/Andres.cs -------------------------------------------------------------------------------- /test/SlowTests/Bugs/Andrew.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Bugs/Andrew.cs -------------------------------------------------------------------------------- /test/SlowTests/Bugs/Arrays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Bugs/Arrays.cs -------------------------------------------------------------------------------- /test/SlowTests/Bugs/BatchPatching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Bugs/BatchPatching.cs -------------------------------------------------------------------------------- /test/SlowTests/Bugs/CS1977.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Bugs/CS1977.cs -------------------------------------------------------------------------------- /test/SlowTests/Bugs/CanGetScores.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Bugs/CanGetScores.cs -------------------------------------------------------------------------------- /test/SlowTests/Bugs/DanTurner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Bugs/DanTurner.cs -------------------------------------------------------------------------------- /test/SlowTests/Bugs/DateFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Bugs/DateFilter.cs -------------------------------------------------------------------------------- /test/SlowTests/Bugs/DateRanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Bugs/DateRanges.cs -------------------------------------------------------------------------------- /test/SlowTests/Bugs/Distinct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Bugs/Distinct.cs -------------------------------------------------------------------------------- /test/SlowTests/Bugs/DyanmicId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Bugs/DyanmicId.cs -------------------------------------------------------------------------------- /test/SlowTests/Bugs/Etag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Bugs/Etag.cs -------------------------------------------------------------------------------- /test/SlowTests/Bugs/RavenDB9939.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Bugs/RavenDB9939.cs -------------------------------------------------------------------------------- /test/SlowTests/Client/BulkInserts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Client/BulkInserts.cs -------------------------------------------------------------------------------- /test/SlowTests/Corax/CoraxOrderBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Corax/CoraxOrderBy.cs -------------------------------------------------------------------------------- /test/SlowTests/Corax/DeleteTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Corax/DeleteTest.cs -------------------------------------------------------------------------------- /test/SlowTests/Core/Querying/Linq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Core/Querying/Linq.cs -------------------------------------------------------------------------------- /test/SlowTests/Core/Session/Crud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Core/Session/Crud.cs -------------------------------------------------------------------------------- /test/SlowTests/Core/Session/Keys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Core/Session/Keys.cs -------------------------------------------------------------------------------- /test/SlowTests/Data/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Data/data.txt -------------------------------------------------------------------------------- /test/SlowTests/Data/data2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Data/data2.txt -------------------------------------------------------------------------------- /test/SlowTests/Data/places.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Data/places.txt -------------------------------------------------------------------------------- /test/SlowTests/FacetTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/FacetTestBase.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/GH-15634.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/GH-15634.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/GH-6008.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/GH-6008.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/Issue_19302.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/Issue_19302.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC-110.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC-110.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC-123.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC-123.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC-128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC-128.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC-163.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC-163.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC-164.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC-164.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC-204.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC-204.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC-282.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC-282.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC-285.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC-285.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC-328.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC-328.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC-372.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC-372.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC-631.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC-631.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC-78.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC-78.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBCL_772.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBCL_772.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC_122.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC_122.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC_161.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC_161.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC_319.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC_319.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC_326.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC_326.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC_390.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC_390.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC_391.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC_391.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC_414.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC_414.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC_622.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC_622.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBC_76.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBC_76.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBQA_11.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBQA_11.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDBS-68.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDBS-68.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDoc-1995.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDoc-1995.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDoc_1318.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDoc_1318.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDoc_56.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDoc_56.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDoc_60.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDoc_60.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDoc_662.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDoc_662.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RDoc_76.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RDoc_76.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB1009.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB1009.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB1019.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB1019.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB1025.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB1025.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB1229.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB1229.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB1247.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB1247.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB1260.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB1260.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB1261.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB1261.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB1508.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB1508.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB1519.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB1519.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB2408.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB2408.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB2568.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB2568.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB741.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB741.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB814.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB814.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB815.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB815.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB820.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB820.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB8384.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB8384.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB845.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB845.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB8655.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB8655.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB8983.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB8983.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB8988.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB8988.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB903.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB903.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB9158.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB9158.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB921.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB921.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB934.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB934.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB937.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB937.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB955.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB955.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB957.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB957.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB9611.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB9611.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB982.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB982.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB987.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB987.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB9927.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB9927.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB9949.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB9949.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB_10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB_10.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB_295.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB_295.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB_299.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB_299.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB_381.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB_381.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB_421.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB_421.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB_422.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB_422.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB_478.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB_478.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB_483.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB_483.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB_505.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB_505.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB_514.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB_514.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB_554.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB_554.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB_556.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB_556.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB_579.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB_579.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB_644.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB_644.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDB_72.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDB_72.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDb1962.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDb1962.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDb4583.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDb4583.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDb6055.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDb6055.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/RavenDb827.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/RavenDb827.cs -------------------------------------------------------------------------------- /test/SlowTests/Issues/Ravendb_334.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Issues/Ravendb_334.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Adrian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Adrian.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Afif.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Afif.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Andrej.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Andrej.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Andrew.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Andrew.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Arun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Arun.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Asger2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Asger2.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Brett.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Brett.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Bruno.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Bruno.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Chirea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Chirea.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Class7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Class7.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Daniel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Daniel.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Dmitry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Dmitry.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Gal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Gal.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Henrik.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Henrik.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Holt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Holt.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Joel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Joel.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Jon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Jon.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Jonas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Jonas.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Jordan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Jordan.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Jorre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Jorre.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Justin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Justin.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Kijana.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Kijana.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Lars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Lars.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Mare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Mare.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Mark2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Mark2.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Maxime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Maxime.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Micha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Micha.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Nick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Nick.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/NimaHa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/NimaHa.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Oregon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Oregon.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Oru.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Oru.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Random.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Random.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Rob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Rob.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Samina.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Samina.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Scott.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Scott.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Sean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Sean.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Stif.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Stif.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Tamir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Tamir.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Tony.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Tony.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Troy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Troy.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Troy2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Troy2.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Victor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Victor.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Viktor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Viktor.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Vitaly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Vitaly.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Vlad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Vlad.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Wade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Wade.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Weave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Weave.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/What.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/What.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/Willem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/Willem.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/ZNS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/ZNS.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/ZNS2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/ZNS2.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/bhiku.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/bhiku.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/chad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/chad.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/gaz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/gaz.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/markp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/markp.cs -------------------------------------------------------------------------------- /test/SlowTests/MailingList/ronne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/MailingList/ronne.cs -------------------------------------------------------------------------------- /test/SlowTests/Orders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Orders.cs -------------------------------------------------------------------------------- /test/SlowTests/RavenDB-14303.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/RavenDB-14303.cs -------------------------------------------------------------------------------- /test/SlowTests/RavenDB-15796.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/RavenDB-15796.cs -------------------------------------------------------------------------------- /test/SlowTests/RavenDB-18634.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/RavenDB-18634.cs -------------------------------------------------------------------------------- /test/SlowTests/RavenDB-19644.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/RavenDB-19644.cs -------------------------------------------------------------------------------- /test/SlowTests/RavenDB-20425.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/RavenDB-20425.cs -------------------------------------------------------------------------------- /test/SlowTests/RavenDB-21679.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/RavenDB-21679.cs -------------------------------------------------------------------------------- /test/SlowTests/RavenDB_21900.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/RavenDB_21900.cs -------------------------------------------------------------------------------- /test/SlowTests/Server/ServerStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Server/ServerStore.cs -------------------------------------------------------------------------------- /test/SlowTests/SlowTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/SlowTests.csproj -------------------------------------------------------------------------------- /test/SlowTests/Tests/Linq/Any.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Tests/Linq/Any.cs -------------------------------------------------------------------------------- /test/SlowTests/Tests/Linq/In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Tests/Linq/In.cs -------------------------------------------------------------------------------- /test/SlowTests/Tests/Linq/Not.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Tests/Linq/Not.cs -------------------------------------------------------------------------------- /test/SlowTests/Tests/Linq/OrderBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Tests/Linq/OrderBy.cs -------------------------------------------------------------------------------- /test/SlowTests/Tests/Spatial/Afif.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Tests/Spatial/Afif.cs -------------------------------------------------------------------------------- /test/SlowTests/Tests/Spatial/Nick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Tests/Spatial/Nick.cs -------------------------------------------------------------------------------- /test/SlowTests/Utils/TestDataUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Utils/TestDataUtil.cs -------------------------------------------------------------------------------- /test/SlowTests/Voron/BigValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Voron/BigValue.cs -------------------------------------------------------------------------------- /test/SlowTests/Voron/Bugs/Bugs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Voron/Bugs/Bugs.cs -------------------------------------------------------------------------------- /test/SlowTests/Voron/Bugs/Deletes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Voron/Bugs/Deletes.cs -------------------------------------------------------------------------------- /test/SlowTests/Voron/Checksum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Voron/Checksum.cs -------------------------------------------------------------------------------- /test/SlowTests/Voron/Full.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Voron/Full.cs -------------------------------------------------------------------------------- /test/SlowTests/Voron/LargeValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Voron/LargeValues.cs -------------------------------------------------------------------------------- /test/SlowTests/Voron/LongKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Voron/LongKeys.cs -------------------------------------------------------------------------------- /test/SlowTests/Voron/MultiAdds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Voron/MultiAdds.cs -------------------------------------------------------------------------------- /test/SlowTests/Voron/RavenDB_2939.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Voron/RavenDB_2939.cs -------------------------------------------------------------------------------- /test/SlowTests/Voron/Recovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Voron/Recovery.cs -------------------------------------------------------------------------------- /test/SlowTests/Voron/Snapshots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Voron/Snapshots.cs -------------------------------------------------------------------------------- /test/SlowTests/Voron/Versioning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/SlowTests/Voron/Versioning.cs -------------------------------------------------------------------------------- /test/StressTests/Client/MultiGet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/StressTests/Client/MultiGet.cs -------------------------------------------------------------------------------- /test/StressTests/Databases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/StressTests/Databases.cs -------------------------------------------------------------------------------- /test/StressTests/StressTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/StressTests/StressTests.csproj -------------------------------------------------------------------------------- /test/StressTests/Voron/Data/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/StressTests/Voron/Data/data.txt -------------------------------------------------------------------------------- /test/Tryouts/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/Tryouts/Program.cs -------------------------------------------------------------------------------- /test/Tryouts/Tryouts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/Tryouts/Tryouts.csproj -------------------------------------------------------------------------------- /test/xunit.runner.CI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/xunit.runner.CI.json -------------------------------------------------------------------------------- /test/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/test/xunit.runner.json -------------------------------------------------------------------------------- /testInLoop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/testInLoop.sh -------------------------------------------------------------------------------- /tools/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/Directory.Build.props -------------------------------------------------------------------------------- /tools/Raven.Debug/CommandLineApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/Raven.Debug/CommandLineApp.cs -------------------------------------------------------------------------------- /tools/Raven.Debug/Dump/Dumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/Raven.Debug/Dump/Dumper.cs -------------------------------------------------------------------------------- /tools/Raven.Debug/GCDump/Graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/Raven.Debug/GCDump/Graph.cs -------------------------------------------------------------------------------- /tools/Raven.Debug/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/Raven.Debug/Program.cs -------------------------------------------------------------------------------- /tools/Raven.Debug/Raven.Debug.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/Raven.Debug/Raven.Debug.csproj -------------------------------------------------------------------------------- /tools/Raven.Migrator/DatabaseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/Raven.Migrator/DatabaseInfo.cs -------------------------------------------------------------------------------- /tools/Raven.Migrator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/Raven.Migrator/Program.cs -------------------------------------------------------------------------------- /tools/TypingsGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/TypingsGenerator/Program.cs -------------------------------------------------------------------------------- /tools/Voron.Recovery/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/Voron.Recovery/Program.cs -------------------------------------------------------------------------------- /tools/Voron.Recovery/Recovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/Voron.Recovery/Recovery.cs -------------------------------------------------------------------------------- /tools/git/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/git/pre-commit -------------------------------------------------------------------------------- /tools/rvn/AdminChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/rvn/AdminChannel.cs -------------------------------------------------------------------------------- /tools/rvn/CommandLineApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/rvn/CommandLineApp.cs -------------------------------------------------------------------------------- /tools/rvn/HelmInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/rvn/HelmInfo.cs -------------------------------------------------------------------------------- /tools/rvn/InitSetupParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/rvn/InitSetupParams.cs -------------------------------------------------------------------------------- /tools/rvn/LogStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/rvn/LogStream.cs -------------------------------------------------------------------------------- /tools/rvn/OfflineOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/rvn/OfflineOperations.cs -------------------------------------------------------------------------------- /tools/rvn/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/rvn/Program.cs -------------------------------------------------------------------------------- /tools/rvn/Utils/ServerProcessUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/rvn/Utils/ServerProcessUtil.cs -------------------------------------------------------------------------------- /tools/rvn/WindowsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/rvn/WindowsService.cs -------------------------------------------------------------------------------- /tools/rvn/rvn.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/tools/rvn/rvn.csproj -------------------------------------------------------------------------------- /upload.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayende/ravendb/HEAD/upload.ps1 --------------------------------------------------------------------------------