Open Issues Need Help
View All on GitHubAI Summary: This issue proposes migrating the application's configuration to TOML files, allowing options for components like `scalar`, `scheduler.core`, and `workers` to be defined in a structured format. A key requirement is the ability to dynamically change these configurations at runtime.
AI Summary: This issue aims to reduce latency for clients requesting objects that are not yet available. Currently, once an object arrives, all pending GET requests are processed sequentially, which can be slow, especially with low-bandwidth clients. The proposed solution is to process these pending requests in parallel by dispatching new ASIO co-routines for each, while carefully managing concurrency when writing to client sockets and addressing potential dependencies from `DUPLICATE`d object IDs.