Giter Site home page Giter Site logo

Comments (6)

MarkusJais avatar MarkusJais commented on June 12, 2024

Is recycling a Task necessary? After it is completed it might be better to create a new Task.
Or is recycling necessary for performance reasons if Task has a lot of internal data?

from futures-rs.

alexcrichton avatar alexcrichton commented on June 12, 2024

Ah I wasn't thinking of recycling a task per-se but moreso if we accidentally re-use IDs. That is, I'd expect a server to be able to service more than 4B requests over its lifetime, so we'll probably recycle an id at some point (but not the task allocation itself)

from futures-rs.

MarkusJais avatar MarkusJais commented on June 12, 2024

Ah, now I understand :-)
There is something like BigUint:
http://huonw.github.io/primal/num/bigint/struct.BigUint.html

Does the id have to be an int? What about UUID?

But both not optimal solutions as they would require more memory.

And UUIDs could collide although the risk is very, very small (but not strictly zero).

from futures-rs.

alexcrichton avatar alexcrichton commented on June 12, 2024

It's true yeah, we could use something like a UUID with an incredibly large state space (to never overflow). The only restriction we have is we need the ability to atomically update it, but tbh a mutex here would be fine, so it's probably not a problem after all!

from futures-rs.

MarkusJais avatar MarkusJais commented on June 12, 2024

The overhead of the mutex should be minimal or we might hit a wall under heavy load.

On the other hand, that could be a sign of bad architecture and using to many threads in the application.

If there are only as many threads as CPUs then a mutex that doesn't cover a lot of code might be perfectly fine.

from futures-rs.

alexcrichton avatar alexcrichton commented on June 12, 2024

Ok, I think I've actually completely addressed this in 4be64f3, as we no longer need ids at all!

@aturon if you see this, we should talk very carefully about this API, and make sure I'm not going crazy.

from futures-rs.

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.