MB
Size: a a a
MB
MB
ST
(time (->> (list 1 2 3)
(map #(future (Thread/sleep 1000) %))
(map deref)
(doall)))
"Elapsed time: 3023.0592 msecs"
=> (1 2 3)
(time (->> (vector 1 2 3)
(map #(future (Thread/sleep 1000) %))
(map deref)
(doall)))
"Elapsed time: 1011.2906 msecs"
=> (1 2 3)
MB
(time (->> (list 1 2 3)
(map #(future (Thread/sleep 1000) %))
(map deref)
(doall)))
"Elapsed time: 3023.0592 msecs"
=> (1 2 3)
(time (->> (vector 1 2 3)
(map #(future (Thread/sleep 1000) %))
(map deref)
(doall)))
"Elapsed time: 1011.2906 msecs"
=> (1 2 3)
MB
ST
N
MB
ST
ST
N
MB
ST
MB
MB
MB
ST
ST
MB
ST