diff --git a/README.md b/README.md index e6db14b..6982ab4 100644 --- a/README.md +++ b/README.md @@ -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!
-https://discord.gg/U8UspuA
+Have a question or need realtime assistance? Feel free to join the discord!
+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)
+Usage: [Check out the documentation for more info](https://github.com/rayaman/multi/blob/master/Documentation.md) ----- ```lua diff --git a/test3.lua b/test3.lua index 5c74bdc..ed8d0d6 100644 --- a/test3.lua +++ b/test3.lua @@ -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() \ No newline at end of file