Giter Site home page Giter Site logo

Comments (2)

hurshi avatar hurshi commented on August 20, 2024

Hello, thank you very much for your advice. As what you suggested, I have modified the implementation of deleting cache. By default, host+path is used as primaryKey and query as subKey.

You can see details in readme and if you find any omission or have a better option, please feel free to correct me.

You're making dio-http-cache better and better, Thank you and have a nice day!

How to delete caches

  1. No matter what subKey is, delete local cache if primary matched.

    // Automatically parses primarykey from path
    _dioCacheManager.deleteByPrimaryKey(path); 
  2. Delete local cache when both primaryKey and subKey matched.

    // delete local cache when both primaryKey and subKey matched.
    _dioCacheManager.deleteByPrimaryKeyAndSubKey(path); 

    INPORTANT: If you have additional parameters when requesting the http interface, you must take them with it, for example:

    _dio.get(_url, queryParameters: {'k': keyword}, 
    	options: buildCacheOptions(Duration(hours: 1)))
    //delete the cache:
    _dioCacheManager.deleteByPrimaryKeyAndSubKey(path, queryParameters:{'k': keyword}); 
    _dio.post(_url, data: {'k': keyword}, 
    	options: buildCacheOptions(Duration(hours: 1)))
    //delete the cache:
    _dioCacheManager.deleteByPrimaryKeyAndSubKey(path, data:{'k': keyword}); 
  3. Delete local cache by primaryKey and optional subKey if you know your primarykey and subkey exactly.

    // delete local cache by primaryKey and optional subKey
    _dioCacheManager.delete(primaryKey,{subKey});

from dio-http-cache.

yevyevyev avatar yevyevyev commented on August 20, 2024

Wow, that's very cool! thanks 🙏

from dio-http-cache.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.