[SPIGOT-7926] Update task scheduler Created: 24/Oct/24 Updated: 25/Dec/24 |
|
Status: | Open |
Project: | Spigot |
Component/s: | None |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | New Feature | Priority: | Minor |
Reporter: | Sunmisc | Assignee: | Unassigned |
Resolution: | Unresolved | Votes: | 0 |
Labels: | Craftbukkit |
Version: | 1.21+ |
Guidelines Read: | Yes |
Description |
The current implementation of the task scheduler is quite good, but as I found it quite difficult to maintain and some of its solutions are redundant queue |20| --> |50| --> |100| --> |120| periods ^| ^| ^| ^| |v |v |v |v +--+ +--+ +--+ +--+ |t1| |t3| |t4| |t6| +--+ +--+ +--+ +--+ ^| ^| ^| |v |v |v +--+ +--+ +--+ |t2| |t5| |t7| +--+ +--+ +--+ 2) Cancel task. Most tasks are aborted directly via BukkitTask itself, not via taskId, hence my solution: CraftTask is protected, so you can pass this task directly to the scheduler (via a method like cancel0(CraftTask task)). Of the obvious solutions for an asynchronous scheduler is a new vorker that will work with its local queue. Such a solution is quite simple to implement. At the same time it can reduce contention even more. Well, it is clear that cachedthreadpool creates threads, and it costs something, and it is not very good to do it in the main thread of the server. + This would reduce the time complexity for PriorityQueue. P.S Although I don't understand who needs async tasks tied to ticks, they are not guaranteed to be executed on ticks anyway, of course CachedThreadPool will try to make sure everyone has time, but at the great cost of OS threads |