#concurrency

[ follow ]
fromDjangocentral
1 year ago

Understanding the 'F' Expression in Django: When and Why to Use It

The 'F' expression in Django represents the value of a model field or a calculated value based on a model field. It allows you to refer to field values and perform database operations without having to fetch them into Python memory. Django uses the 'F()' object to generate the appropriate database-level SQL expression. This approach improves efficiency by avoiding unnecessary data transfers between the database and Python, making your code faster and more optimized.
fromHackernoon
1 month ago

Streamlining Go Concurrency Using a Worker Pool | HackerNoon

Goroutines are lightweight threads that can run concurrently, allowing for multiple tasks to be performed simultaneously without the overhead of traditional threads.
Miscellaneous
fromHackernoon
6 years ago

Lambda Isn't Made for Parallelism - But Go Still Gets the Job Done | HackerNoon

AWS Lambda allows for concurrent execution of programs, leveraging Goroutines for non-blocking I/O bound tasks, enhancing performance similar to Node.js asynchronous handling.
Golden State Warriors
fromInfoQ
1 month ago

Swift 6.2 Introduces Approachable Concurrency to Simplify Concurrent Programming

Approachable concurrency in Swift 6.2 simplifies concurrent programming, making the compiler more predictable and reducing overwhelming errors and warnings not related to real issues.
Mobile UX
React
fromMedium
1 month ago

How React Batching and Scheduling Work Behind the Scenes

Understanding batching and scheduling in React is essential for building performant applications.
Software development
fromMedium
1 month ago

How the Actor Model Scales to Millions of Users

The Actor Model, especially with Akka, enables the creation of scalable, efficient, and non-blocking systems in contrast to traditional thread-based architectures.
Python
fromHackernoon
1 year ago

To Gunicorn or to Poetry, That is The Question | HackerNoon

Use Gunicorn for production with concurrency requirements; use Poetry for simpler, development scenarios.
fromRealpython
1 month ago

Free-Threaded Python Unleashed and Other Python News for July 2025 - Real Python

The third beta of Python 3.14 now officially supports the no-GIL build for CPython, signaling a new era of multi-core Python.
Python
#python
#java
fromInfoQ
3 months ago
Scala

JEP 505 Delivers Fifth Preview of Java's Structured Concurrency with Key API Refinements

fromInfoQ
3 months ago
Scala

JEP 505 Delivers Fifth Preview of Java's Structured Concurrency with Key API Refinements

fromInfoQ
4 months ago

Swift 6.1 Enhances Concurrency, Introduces Package Traits, and More

Swift 6.1 introduces type-wide global actor inference control, supporting nonisolated declarations for protocols, enhancing concurrency management and simplifying the Swift development experience.
Scala
Scala
frommedium.com
4 months ago

Fraud Detection in Financial Transactions Using Scala CollectionsA Practical Guide

Scala's performance and collection features make it ideal for high-volume fraud detection systems.
Ruby on Rails
fromRubyflow
4 months ago

Scaling Rails Applications

Scaling Rails applications requires careful consideration of performance factors like concurrency, processes, and resource management.
fromPython GUIs
4 months ago

Multithreading PyQt6 applications with QThreadPool

A common problem when building Python GUI applications is the interface locking up when attempting to perform long-running background tasks.
Running
Scala
fromMedium
4 months ago

Achieving True Parallelism with ZIO: Fibers, Threads, and Cooperative Scheduling

ZIO fibers provide lightweight concurrency that scales efficiently, utilizing cooperative scheduling over preemptive scheduling found in OS threads.
[ Load more ]