You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2019/12/11 07:59:56 UTC

[couchdb] branch prototype/fdb-layer updated (cea9274 -> b3899c4)

This is an automated email from the ASF dual-hosted git repository.

jaydoane pushed a change to branch prototype/fdb-layer
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


    from cea9274  Delete attachments when no longer referenced
     add 2f7957c  Expiring cache
     new b3899c4  Merge pull request #2331 from cloudant/expiring-cache

The 1 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_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 +++++++++++++++++
 9 files changed, 460 insertions(+), 11 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


[couchdb] 01/01: Merge pull request #2331 from cloudant/expiring-cache

Posted by ja...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jaydoane pushed a commit to branch prototype/fdb-layer
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit b3899c402c0b93833c40235a473dc67e4988b8da
Merge: cea9274 2f7957c
Author: Jay Doane <ja...@apache.org>
AuthorDate: Tue Dec 10 23:59:46 2019 -0800

    Merge pull request #2331 from cloudant/expiring-cache
    
    Expiring cache

 rebar.config.script                                |   1 +
 src/couch_expiring_cache/README.md                 |  71 +++++++++++++
 .../include/couch_expiring_cache.hrl               |  17 +++
 src/couch_expiring_cache/rebar.config              |  14 +++
 .../src/couch_expiring_cache.app.src               |  27 +++++
 .../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 +++++++++++++++++
 9 files changed, 507 insertions(+)