Fork me on GitHub
#babashka
<
2021-10-19
>
Michael W01:10:25

What is the best way to split across 2 cores so that operations can run concurrent? I have 3 apis I want to query, I would like 1 to be handled by a background process then 2 handled by the main process. I am trying to minimize ms for aws lambda.

nate02:10:15

Create a future for the background one, do the other two and then deref the future to wait on it to finish.

Benjamin09:10:15

are there bb bash completions? Use case is completing bb tasks

borkdude09:10:17

I'm using zsh completions myself : https://book.babashka.org/#_terminal_tab_completion Feel free to contribute bash code, it's not yet in there

👍 1