#threading

[ follow ]
Python
PySide6 allows direct use of Python callables with QThreadPool.start() for simple background tasks, eliminating the need for QRunnable subclasses.
Java
fromMedium
2 months ago

Spring Boot Defaults You Forgot to Change-And Now Regret (Practical, No Theory)

Spring Boot production defaults (Tomcat threads, HikariCP connections) can cause blocking, queued requests, and latency spikes; tune thread and DB pool sizes for production.
Python
fromPython GUIs
2 months ago

What does @pyqtSlot() do?

Use @pyqtSlot to create native Qt slots for threaded contexts and to reduce memory usage and slightly improve performance; otherwise plain Python callables work.
#python
[ Load more ]