Futures for C++11 at Facebook
code.facebook.com
Futures for C++11 at Facebook
1–10 of 84 posts
Re: Futures for C++11 at Facebook
#2Re: Futures for C++11 at Facebook
#3Re: Futures for C++11 at Facebook
#4Re: Futures for C++11 at Facebook
#5Very similar to C#'s TPL.
And VS2015 has experimental support for async/await in C++: http://blogs.msdn.com/b/vcblog/archive/2014/11/12/resumable-...
Re: Futures for C++11 at Facebook
#6Re: Futures for C++11 at Facebook
#7Futures sounds a lot like Promises to me. Or am I wrong?
Re: Futures for C++11 at Facebook
#8> The SU service fetches candidate accounts from various sources, such as your friends, accounts that you may be interested in, and popular accounts in your area. Then, a machine learning model blends them to produce a list of personalized account suggestions.
> This enabled us to reduce the number of instances of the Suggested Users service from 720 to 38.
Re: Futures for C++11 at Facebook
#9Can someone explain to me what does it add over http://www.boost.org/doc/libs/1_58_0/doc/html/thread/synchro... and pros/cons ? Thanks.
Re: Futures for C++11 at Facebook
#10There's been a push to standardize "Promise" to be the read-only side and "Future" to mean the resolver/promise pair, but Folly Futures use the opposite convention.
Agreeing on terminology is hard. :)
Edit: I think it's fine that Folly adopted the C++11 convention. I'm just whining in the open that that promise vs. future may never be agreed upon.