Giter Site home page Giter Site logo

Comments (4)

olegwtf avatar olegwtf commented on August 17, 2024

In the current version nocache subref executes only if response for this request was not already cached. It excecutes to determine to cache or not to cache current response. At this state file at fpath not stored yet. So we can't check is nonexistent file is old or smth else.

Please provide more info or patch if I understood you incorrectly.

P.S.: May be we need one more callback which will be called if response for this request available in the cache? Smth like
recache => sub { my $fpath = shift; return (stat($fpath))[9] < 1325516375; }

from p5-lwp-useragent-cached.

fayland avatar fayland commented on August 17, 2024

yes, it makes sense too.

you know sometimes with Tor or other proxy, we may get uncompleted HTML code, so we need check if the content contains </html> or not.

that's all what I want to request.

Thanks

from p5-lwp-useragent-cached.

olegwtf avatar olegwtf commented on August 17, 2024

Ok, thanks for idea. I will add recache callback.
About your example with incomplete HTML. Module already provides some solution with uncache() method:

my $page = $ua->get($url)->content;
$ua->uncache() if index($page, '</html>') == -1;

from p5-lwp-useragent-cached.

fayland avatar fayland commented on August 17, 2024

Thanks for the module, I like it.

from p5-lwp-useragent-cached.

Related Issues (4)

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.