Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.1.6 #30

Closed
dmolina opened this issue Mar 15, 2021 · 1 comment
Closed

Version 0.1.6 #30

dmolina opened this issue Mar 15, 2021 · 1 comment

Comments

@dmolina
Copy link
Owner

dmolina commented Mar 15, 2021

@JuliaRegistrator register

New version v0.1.6

In version v0.1.5 DaemonMode is able to run each client in parallel, but not in several CPUs. In this version it is able to run each client in one different CPU.

$  julia -e 'using DaemonMode; serve(async=true)'

That command will allow to run different clients parallel, but it will use only one CPU.

If you want to use several threads, you can do:

$  julia -t auto -e 'using DaemonMode; serve(async=true)'

Auto allows DaemonMode to use all processors of the computer, but you can put -t 1, -t 2, ...

With several threads (indicated with -t), you can run several clients in different CPUs, without increasing the time for each client. If there is only one process, the processing time will be divided between the different clients.

Changes

  • Improve documentation in relation with async and threads.

Fixes

@JuliaRegistrator
Copy link

Registration pull request created: JuliaRegistries/General/31990

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.6 -m "<description of version>" fd5b24d22ca1c691a10e62187ff93baafee7d66f
git push origin v0.1.6

@dmolina dmolina closed this as completed Mar 24, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants