GithubHelp home page GithubHelp logo

Comments (8)

greim avatar greim commented on August 30, 2024

Thanks. I hadn't thought of this before, but now that you mention it it seems obvious :)

from hoxy.

greim avatar greim commented on August 30, 2024

Hmm. Should uploads and downloads be independent throttle groups? Presumably yes since most internet connections (in the US at least) are faster down than up. Maybe like this?

new hoxy.Proxy({
  slow: {
    up: { rate: 10000, latency: 30 },
    down: { rate: 100000, latency: 20 },
  }
})

from hoxy.

greim avatar greim commented on August 30, 2024

I'm thinking maybe rather something like this:

new hoxy.Proxy({
  slow: {

    // bottlenecks all throughput to this speed
    rate: 10000,

    // delays responses by a certain amount
    latency: 30,

    // bottlenecks all uploads to this speed
    // overrides "rate" above
    up: 10000,

    // bottlenecks all downloads to this speed
    // overrides "rate" above
    down: 100000,
  }
})

from hoxy.

greim avatar greim commented on August 30, 2024

Published as 2.0.0. Let me know how it works.

from hoxy.

nerdbeere avatar nerdbeere commented on August 30, 2024

Awesome, thanks!
But I think it would make sense to have getters and setters for both up and downstream.
If you point me in the right direction, maybe I an come up with a pull request.

from hoxy.

greim avatar greim commented on August 30, 2024

I see. Would it be helpful to have setSlow(opts) and getSlow() methods, which set and get an object having the same structure as the one passed to the constructor? (e.g. { rate, latency, up, down })

from hoxy.

nerdbeere avatar nerdbeere commented on August 30, 2024

That'd be perfect

from hoxy.

greim avatar greim commented on August 30, 2024

Added and published in v2.3.0.

from hoxy.

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.