dio_http_cache 0.1.1 dio_http_cache: ^0.1.1 copied to clipboard
http cache lib for Flutter dio like RxCache.It use sqflite as disk cache,and google/quiver-dart/LRU strategy as memory cache.
dio-http-cache #
Dio-http-cache is a cache library for Dio ( http client for flutter ), like Rxcache in Android.
Dio-http-cache uses sqflite as disk cache, and LRU strategy as memory cache.
Inspired by flutter_cache_manager.
Add Dependency #
dio_http_cache: ^0.1.1
QuickStart #
-
Add a dio-http-cache interceptor in Dio :
dio.interceptors.add(DioCacheManager(CacheConfig()).interceptor);
-
Set maxAge for a request :
Dio().get( "http://www.google.com", options: buildCacheOptions(Duration(days: 7)), );
The advanced #
-
Custom your config by buildCacheOptions :
- MaxAge: the only required param, set the cache time;
- MaxStale: set stale time. when error occur (like 500,404),try to return cache before maxStale.
- subKey: dio-http-cache use url as key,you can add a subKey when necessary, such as different params with the same request.
-
Use "CacheConfig" to config default params
- encrypt / decrypt: These two must be used together to encrypt the disk cache data, use base64 as default.
- DefaultMaxAge: use
Duration(day:7)
as default. - DefaultaMaxStale: just like DefaultMaxAge
- DatabaseName: database name.
- SkipMemoryCache: false defalut.
- SkipDiskCache: false default.
- MaxMemoryCacheCount: 100 defalut.
-
How to clear expired cache
- Just ignore it,this is automatic.
- But if you must do it:
DioCacheManager.clearExpired();
-
How to delete one cache
DioCacheManager.delete(url); //delete all the cache with url as the key DioCacheManager.delete(url,subKey);
-
How to clear All caches
DioCacheManager.clearAll();
License #
Copyright 2019 Hurshi
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.