mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 15:24:46 -05:00
2ed85c7dd6
The original implementation of `Cache` used a custom `shutdown` method on the resource, but to simplify fast streams work we're going to move this to an op of its own. While we're in here, we're going to replace `opAsync` with `ensureFastOps`. `op2` work will have to wait because of some limitations to our async support, however. |
||
---|---|---|
.. | ||
01_cache.js | ||
Cargo.toml | ||
lib.deno_cache.d.ts | ||
lib.rs | ||
README.md | ||
sqlite.rs |
deno_cache
This crate implements the Cache API for Deno.
The following APIs are implemented:
CacheStorage::open()
CacheStorage::has()
CacheStorage::delete()
Cache::match()
Cache::put()
Cache::delete()
Cache APIs don't support the query options yet.