This is an automated email from the ASF dual-hosted git repository.
davisp pushed a change to branch prototype/fdb-layer-get-dbs-info
in repository https://gitbox.apache.org/repos/asf/couchdb.git.
discard 3bc12c8 Add database size tests
discard 8a4062e Delete attachments when possible
discard b38ab2b Track the size of data stored in a database
discard f387055 Support `GET /_dbs_info` endpoint
discard 60fa333 Implement `fabric2_db:list_dbs_info/1,2,3`
discard 288d7b6 Implement async API for `fabric2_fdb:get_info/1`
discard 1a7e373 Track a database level view size rollup
add 77e6901 Silence test suite warning message about crypto
add cea9274 Delete attachments when no longer referenced
add 2f7957c Expiring cache
add b3899c4 Merge pull request #2331 from cloudant/expiring-cache
new 3969839 Track a database level view size rollup
new 35e7019 Implement async API for `fabric2_fdb:get_info/1`
new 628a041 Implement `fabric2_db:list_dbs_info/1,2,3`
new da5c356 Support `GET /_dbs_info` endpoint
new 9170252 Track the size of data stored in a database
new 001458a Add database size tests
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 (3bc12c8)
\
N -- N -- N refs/heads/prototype/fdb-layer-get-dbs-info (001458a)
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.
The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
rebar.config.script | 1 +
src/couch/src/test_util.erl | 4 +
src/couch_expiring_cache/README.md | 71 +++++
.../include/couch_expiring_cache.hrl} | 10 +-
src/{fabric => couch_expiring_cache}/rebar.config | 0
.../src/couch_expiring_cache.app.src} | 12 +-
.../src/couch_expiring_cache.erl | 56 ++++
.../src/couch_expiring_cache_fdb.erl | 116 +++++++++
.../src/couch_expiring_cache_server.erl | 110 ++++++++
.../test/couch_expiring_cache_tests.erl | 95 +++++++
src/fabric/include/fabric2.hrl | 4 +-
src/fabric/src/fabric2_db.erl | 8 +-
src/fabric/src/fabric2_fdb.erl | 40 +--
src/fabric/src/fabric2_util.erl | 5 +-
src/fabric/test/fabric2_doc_att_tests.erl | 285 +++++++++++++++++++++
15 files changed, 779 insertions(+), 38 deletions(-)
create mode 100644 src/couch_expiring_cache/README.md
copy src/{ddoc_cache/test/eunit/ddoc_cache_ev.erl =>
couch_expiring_cache/include/couch_expiring_cache.hrl} (78%)
copy src/{fabric => couch_expiring_cache}/rebar.config (100%)
copy src/{couch_eval/src/couch_eval.app.src =>
couch_expiring_cache/src/couch_expiring_cache.app.src} (79%)
create mode 100644 src/couch_expiring_cache/src/couch_expiring_cache.erl
create mode 100644 src/couch_expiring_cache/src/couch_expiring_cache_fdb.erl
create mode 100644 src/couch_expiring_cache/src/couch_expiring_cache_server.erl
create mode 100644 src/couch_expiring_cache/test/couch_expiring_cache_tests.erl
create mode 100644 src/fabric/test/fabric2_doc_att_tests.erl