Git Product home page Git Product logo

Comments (3)

alexcrichton avatar alexcrichton commented on June 4, 2024

Thanks for the issue! I've added an FAQ to the main repository as I suspect there'll be quite a few questions along these lines! And this is now the first answered question.

If you have more thoughts on that, though, please feel free to ask here!

from futures-rs.

tomaka avatar tomaka commented on June 4, 2024

I'm not so concerned about Send, but more about 'static. The fact that futures are static means that it is almost mandatory to use Arcs everywhere.

from futures-rs.

alexcrichton avatar alexcrichton commented on June 4, 2024

Ah interesting! We've discussed a few times how we might get rid of 'static, but unfortunately it always seems to end up akin to "add a lifetime parameter everywhere", which to us seems like it's not worth the ergonomic cost.

Another way to think about it is that if you were writing an event loop by hand, all lifetimes of borrowed objects which persist across event loop iterations have to live longer than the event loop itself, and that's the lifetime that would get threaded everywhere.

In general though the cost of an allocation for 'static data shouldn't be too bad as it's only required once per task, not once per future or once per poll or anything like that.

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.