Hello, currently, Spring Boot 3 and JDK 21 support virtual threads, which perform exceptionally well in efficiently handling I/O-intensive tasks. When blocking operations (such as network requests, database queries) occur, virtual threads will automatically suspend and release the underlying platform threads, allowing the latter to continue executing other tasks, thereby significantly improving throughput. Can Retrofit support virtual threads? I think it would be beneficial to distinguish between I/O-intensive and CPU-intensive tasks. For I/O-intensive tasks, virtual threads can enhance throughput, which would be a significant improvement for my service
Hello, currently, Spring Boot 3 and JDK 21 support virtual threads, which perform exceptionally well in efficiently handling I/O-intensive tasks. When blocking operations (such as network requests, database queries) occur, virtual threads will automatically suspend and release the underlying platform threads, allowing the latter to continue executing other tasks, thereby significantly improving throughput. Can Retrofit support virtual threads? I think it would be beneficial to distinguish between I/O-intensive and CPU-intensive tasks. For I/O-intensive tasks, virtual threads can enhance throughput, which would be a significant improvement for my service