V15.2.0 #33

Merged
rayaman merged 75 commits from v15.2.0 into master 2022-04-19 18:45:52 -04:00
2 changed files with 7 additions and 13 deletions
Showing only changes of commit b8b31253d4 - Show all commits

View File

@ -1,6 +1,7 @@
# Multi Version: 15.2.0 Upgrade Complete
**Key Changes**
- All objects now use connections internally
- Connections now about 23x faster!
- Updated getTasksDetails() to handle the new method of managing threads and processors
Found an issue? Please [submit it](https://github.com/rayaman/multi/issues) and someone will look into it!
@ -18,15 +19,15 @@ If you want to use the system threads, then you'll need to install lanes!
Discord
-------
Have a question? Or need realtime assistance? Feel free to join the discord!</br>
https://discord.gg/U8UspuA</br>
Have a question or need realtime assistance? Feel free to join the discord!</br>
https://discord.gg/U8UspuA
Planned features/TODO
---------------------
- [ ] Create test suite
- [ ] Network Parallelism rework
Usage: [Check out the documentation for more info](https://github.com/rayaman/multi/blob/master/Documentation.md)</br>
Usage: [Check out the documentation for more info](https://github.com/rayaman/multi/blob/master/Documentation.md)
-----
```lua

View File

@ -1,6 +1,6 @@
package.path = "./?.lua"
--require("jitpaths")
require("luapaths")
require("jitpaths")
--require("luapaths")
local multi,thread = require("multi"):init()
--local GLOBAL,THREAD = require("multi.integration.lanesManager"):init()
@ -24,13 +24,6 @@ local multi,thread = require("multi"):init()
-- end)
multi:benchMark(1):OnBench(function(sec,steps)
print("Steps:",steps)
--os.exit()
os.exit()
end)
multi:newThread(function()
print(thread.hold(function()
return false
end,{sleep=1}))
end)
multi:mainloop()