Ghost/ghost/api-framework/lib
Naz 3cfe6d2cbb
Added cache support to api-framework
refs https://github.com/TryGhost/Toolbox/issues/522

- API-level response caching allows to cache responses bypassing the "pipeline" processing
- The main usecase for these caches is caching GET requests for expensive Content API requests
- To enable response caching add a "cache" key with a cache instance as a value, for example for posts public cache configuration can look like:
```
module.exports = {
    docName: 'posts',

    browse: {
        cache: postsPublicService.api.cache,
        options: [ ...
```
2023-02-23 13:07:04 +08:00
..
serializers Removed bluebird from api-framework module (#15685) 2022-10-31 19:30:18 +00:00
utils
validators Removed bluebird from api-framework module (#15685) 2022-10-31 19:30:18 +00:00
api-framework.js
frame.js
headers.js Removed bluebird from api-framework module (#15685) 2022-10-31 19:30:18 +00:00
http.js
pipeline.js Added cache support to api-framework 2023-02-23 13:07:04 +08:00