This is an automated email from the ASF dual-hosted git repository.
rnewson pushed a change to branch lucene-10
in repository https://gitbox.apache.org/repos/asf/couchdb.git
discard 92b38b27c fix formatting error in previous PR
discard 1a13e679b add scanner to upgrade nouveau indexes
discard 42eb1ad65 insert lucene version on save if missing
discard 9fbe57e9c don't create indexes for old lucene versions
discard b012b9a0b update to lucene 10
discard 9d7c49c2f Remove "9" from package and class names
discard 8632146e2 add lucene version to ddoc and index definition
add 4c708e403 BTree engine term cache
add 08cb7e819 Use config:get_integer/3 in couch_btree
add c5f630714 Fix and improve couch_btree testing
add c640158f9 add lucene version to ddoc and index definition
add 99f9d47ed Remove "9" from package and class names
add 531bb2b66 update to lucene 10
add d0e1d9741 Allow existing legacy indexes but prevent new ones
add 7e78fc5f5 insert lucene version on save if missing
add f631ec903 add scanner to upgrade nouveau indexes
add adea2a816 fix formatting error in previous PR
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (92b38b27c)
\
N -- N -- N refs/heads/lucene-10 (adea2a816)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../couchdb/nouveau/api/IndexDefinition.java | 4 +-
.../apache/couchdb/nouveau/core/IndexManager.java | 10 +-
rel/overlay/etc/default.ini | 20 ++
src/chttpd/src/chttpd_node.erl | 1 +
src/couch/priv/stats_descriptions.cfg | 12 +
src/couch/src/couch_bt_engine.erl | 46 ++-
src/couch/src/couch_bt_engine_cache.erl | 292 ++++++++++++++++++
src/couch/src/couch_btree.erl | 326 ++++++++++++++-------
src/couch/src/couch_primary_sup.erl | 3 +-
.../test/eunit/couch_bt_engine_cache_test.erl | 102 +++++++
src/couch/test/eunit/couch_btree_tests.erl | 97 +++++-
src/couch_prometheus/src/couch_prometheus.erl | 12 +-
12 files changed, 797 insertions(+), 128 deletions(-)
create mode 100644 src/couch/src/couch_bt_engine_cache.erl
create mode 100644 src/couch/test/eunit/couch_bt_engine_cache_test.erl