Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Make more web server encoding tweaks | Christopher Baines | 2025-02-07 |
| | |||
* | Remove the resource pool reply timeout | Christopher Baines | 2025-02-04 |
| | | | | By being smarter about how long to wait for replies. | ||
* | Improve resource pool performance when there are lots of waiters | Christopher Baines | 2025-02-04 |
| | |||
* | Fix idle resource removal in the resource pool | Christopher Baines | 2025-02-03 |
| | |||
* | Rework handling of using a proc for the web server response body | Christopher Baines | 2025-02-03 |
| | | | | To address encoding issues and improve exception handling. | ||
* | Fix issue with parallel creating resource pool resources | Christopher Baines | 2025-02-02 |
| | |||
* | Improve resource pool destruction | Christopher Baines | 2025-01-31 |
| | |||
* | Call web server exception handlers with the request | Christopher Baines | 2025-01-29 |
| | | | | So that this can be used when reporting the exception. | ||
* | Add fibers-promise-result-available? | Christopher Baines | 2025-01-29 |
| | |||
* | Try to better handle exceptions in the web server | Christopher Baines | 2025-01-23 |
| | |||
* | Rename worker threads to thread pool | Christopher Baines | 2025-01-14 |
| | | | | | | | | | I think this needs more work, maybe the thread pool should be more similar to the resource pool, but I think the name change is still helpful. Maybe there's a need for a variable size thread pool and that can better integrate with the work queue. | ||
* | Tweak the resource pool | Christopher Baines | 2025-01-09 |
| | | | | | | | | | Mostly to no longer sleep in the main fiber. Now the main fiber just spawns other fibers when it would previously block on put-operation and these other fibers communicate back to the main resource pool fiber when necessary. This should mean that the resource pool is more responsive. | ||
* | Support getting the pool from the timeout error | Christopher Baines | 2025-01-06 |
| | |||
* | Consistently use non-blocking | Christopher Baines | 2024-12-29 |
| | |||
* | Allow nesting worker thread calls | Christopher Baines | 2024-12-28 |
| | | | | Incorporating changes from the nar-herder. | ||
* | Fix a bug in fibers-batch-map (and related procedures) | Christopher Baines | 2024-12-27 |
| | | | | And add more tests. | ||
* | Make the parallel operations more continuous | Christopher Baines | 2024-12-22 |
| | | | | | | | | | | Instead of batching the list items, change the batch size to a parallelism limit and run up to that many fibers. When the processing of one list item finishes, another will then start immediately after, rather than when the whole batch is finished. These changes also make the fibers-map and fibers-for-each operations work with vectors as well as lists. | ||
* | Initial commit | Christopher Baines | 2024-12-16 |