reference: stackeroverflow
promise
- You create a
promise
. That promise object can now be passed to any thread. - You continue with calculations. These can be very complicated calculations involving side-effects, downloading data, user input, database access, other promises – whatever you like. The code will look very much like your mainline code in any program.
- When you’re finished, you can
deliver
the results to that promise object. - Any item that tries to
deref
your promise before you’re finished with your calculation will block until you’re done. Once you’re done and you’vedeliver
ed the promise, the promise won’t block any longer.
future
- You create your future. Part of your future is an expression for calculation.
- The future may or may not execute concurrently. It could be assigned a thread, possibly from a pool. It could just wait and do nothing. From your perspective you cannot tell.
- At some point you (or another thread)
deref
s the future. If the calculation has already completed, you get the results of it. If it has not already completed, you block until it has. (Presumably if it hasn’t started yet,deref
ing it means that it starts to execute, but this, too, is not guaranteed.)
Both Future and Promise are mechanisms to communicate result of asynchronous computation from Producer to Consumer(s).
In case of Future the computation is defined at the time of Future creation and async execution begins “ASAP”. It also “knows” how to spawn an asynchronous computation.
Future的计算是立即执行
In case of Promise the computation, its start time and [possible] asynchronous invocation are decoupled from the delivery mechanism. When computation result is available Producer must call deliver
explicitly, which also means that Producer controls when result becomes available.
Promise的计算是需要等待的, 即显式调用
deliver
For Promises Clojure makes a design mistake by using the same object (result of promise
call) to both produce (deliver
) and consume (deref
) the result of computation. These are two very distinct capabilities and should be treated as such.