Giter VIP home page Giter VIP logo

one_and_done's People

Contributors

bceskavich avatar brentjanderson avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

one_and_done's Issues

Subtle idempotency bug

Hey, y'all,

I saw the announcement about this library and decided to look at the internals. Unfortunately, you have a subtle bug that allows a user to violate idempotent guarantees.

The current order of operations is to check the cache, and if there is no key, allow a request to continue. Once the request is handled, it caches the response and returns it to the user. But, because the caching is done after the request has been completed, there is a possibility that the caller initiates two requests with the same key, and both are allowed to process.

A quick example would be if the caller adds a 500ms timeout and retries if the timeout is violated. This sort of thing is very typical with idempotent APIs. If the request takes longer than 500ms to complete, the caller will retry, and at that point, both requests will process, and your guarantees will be violated. The solution here would be to either lock that key, serialize access to it, cache the key before the request has started processing, etc. I leave it to you to decide how best to handle this.

You also have a minor second issue: if your request handler process throws or raises, register_before_send will not fire, and your response will not be recorded. I don't know if you want to handle that directly.

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.