platform/packages/cache
2022-04-24 09:42:33 +08:00
..
example Updated cache 2021-06-26 18:02:41 +08:00
lib Fixed dev logging 2022-01-23 13:10:50 +08:00
test Updated cache linter 2021-12-19 10:23:27 +08:00
.gitignore Add 'packages/cache/' from commit 'aea408b2f7bda86f28b7ea8c8f8d2b43f47915e7' 2020-02-15 18:29:01 -05:00
analysis_options.yaml Updated cache linter 2021-12-19 10:23:27 +08:00
AUTHORS.md Published oauth2, cache, cors, auth_oauth2 2021-05-30 08:46:13 +08:00
CHANGELOG.md Updated to SDK 2.16.x 2022-04-23 12:21:39 +08:00
LICENSE Updated cache linter 2021-12-19 10:23:27 +08:00
melos_angel3_cache.iml Added melos 2022-03-19 09:37:28 +08:00
pubspec.yaml Published 6.0.0 2022-04-24 09:42:33 +08:00
README.md Fixed dev logging 2022-01-23 13:10:50 +08:00

Angel3 HTTP Cache

Pub Version (including pre-releases) Null Safety Gitter License

A service that provides HTTP caching to the response data for Angel3 framework.

CacheService

A Service class that caches data from one service, storing it in another. An imaginable use case is storing results from MongoDB or another database in Memcache/Redis.

cacheSerializationResults

A middleware that enables the caching of response serialization.

This can improve the performance of sending objects that are complex to serialize. You can pass a [shouldCache] callback to determine which values should be cached.

void main() async {
    var app = Angel()..lazyParseBodies = true;
    
    app.use(
      '/api/todos',
      CacheService(
        database: AnonymousService(
          index: ([params]) {
            print('Fetched directly from the underlying service at ${DateTime.now()}!');
            return ['foo', 'bar', 'baz'];
          },
          read: (id, [params]) {
            return {id: '$id at ${DateTime.now()}'};
          }
        ),
      ),
    );
}

ResponseCache

A flexible response cache for Angel3.

Use this to improve real and perceived response of Web applications, as well as to memorize expensive responses.

Supports the If-Modified-Since header, as well as storing the contents of response buffers in memory.

To initialize a simple cache:

Future configureServer(Angel app) async {
  // Simple instance.
  var cache = ResponseCache();
  
  // You can also pass an invalidation timeout.
  var cache = ResponseCache(timeout: const Duration(days: 2));
  
  // Close the cache when the application closes.
  app.shutdownHooks.add((_) => cache.close());
  
  // Use `patterns` to specify which resources should be cached.
  cache.patterns.addAll([
    'robots.txt',
    RegExp(r'\.(png|jpg|gif|txt)$'),
    Glob('public/**/*'),
  ]);
  
  // REQUIRED: The middleware that serves cached responses
  app.use(cache.handleRequest);
  
  // REQUIRED: The response finalizer that saves responses to the cache
  app.responseFinalizers.add(cache.responseFinalizer);
}

Purging the Cache

Call invalidate to remove a resource from a ResponseCache.

Some servers expect a reverse proxy or caching layer to support PURGE requests. If this is your case, make sure to include some sort of validation (maybe IP-based) to ensure no arbitrary attacker can hack your cache:

Future configureServer(Angel app) async {
  app.addRoute('PURGE', '*', (req, res) {
    if (req.ip != '127.0.0.1')
      throw AngelHttpException.forbidden();
    return cache.purge(req.uri.path);
  });
}