Tagged articles
16 articles
Page 1 of 1
21CTO
21CTO
May 17, 2026 · Backend Development

Introducing PhenixPHP: A Modern Asynchronous PHP Framework

PhenixPHP is an async, concurrent PHP framework built on AmpHP and PHP Fibers that runs on the CLI, offering non‑blocking I/O, HTTP server, routing, DI, database tools, queues and expressive syntax, aiming to enrich the PHP ecosystem much like Express.js does for Node.js.

AmpHPAsynchronousBackend Framework
0 likes · 3 min read
Introducing PhenixPHP: A Modern Asynchronous PHP Framework
php Courses
php Courses
Oct 10, 2025 · Backend Development

How TrueAsync Is Revolutionizing PHP Asynchronous Programming in 2025

TrueAsync brings true asynchronous capabilities to PHP by leveraging Fibers and an event‑loop, enabling thousands of concurrent I/O operations in a single thread, dramatically improving performance, reducing resource usage, and opening new possibilities for high‑performance APIs, real‑time apps, and microservices.

AsyncBackendFibers
0 likes · 7 min read
How TrueAsync Is Revolutionizing PHP Asynchronous Programming in 2025
Open Source Tech Hub
Open Source Tech Hub
Jul 5, 2025 · Backend Development

Understanding PHP Coroutines: Generators, Fibers, and Real‑World Use Cases

This article explains what coroutines are, how PHP implements them with Generators and Fibers, compares asymmetric and symmetric designs, shows practical code examples, and outlines scenarios where coroutines improve state handling, lazy iteration, and cooperative multitasking in backend applications.

CoroutinesFibersGenerators
0 likes · 17 min read
Understanding PHP Coroutines: Generators, Fibers, and Real‑World Use Cases
php Courses
php Courses
Dec 2, 2024 · Backend Development

Understanding PHP 8.1 Fibers: How They Work and Their Limitations

This article explains PHP 8.1 Fibers, describing their cooperative multitasking mechanism, how suspension and resumption affect the main script, why they do not provide true asynchronous execution, and how they can be combined with event loops for more efficient non‑blocking code in backend development.

AsynchronousBackendFibers
0 likes · 7 min read
Understanding PHP 8.1 Fibers: How They Work and Their Limitations
php Courses
php Courses
Aug 22, 2024 · Backend Development

Understanding PHP 8.1 Fibers: Concepts, Usage, and Practical Examples

This article explains PHP 8.1's Fibers feature, describing how they enable lightweight cooperative multitasking, showing basic and advanced code examples for non‑blocking I/O, parallel API/database calls, and large‑file processing, and discusses benefits, use‑cases, and important limitations.

FibersNon-blocking I/Oconcurrency
0 likes · 12 min read
Understanding PHP 8.1 Fibers: Concepts, Usage, and Practical Examples
Laravel Tech Community
Laravel Tech Community
Dec 27, 2021 · Backend Development

New Features in PHP 8.1

The article outlines PHP 8.1’s major enhancements—including enums, readonly properties, advanced callable syntax, fibers, intersection types, never return type, final class constants, octal literals, and performance improvements—providing code comparisons that illustrate the new syntax and behavior.

8.1EnumsFibers
0 likes · 9 min read
New Features in PHP 8.1
php Courses
php Courses
Dec 8, 2021 · Backend Development

Top 10 New Features in PHP 8.1

This article introduces the ten most important new features of PHP 8.1—including enums, fibers, the never return type, readonly properties, final class constants, array_is_list(), fsync/fdatasync, string‑key array unpacking, the $_FILES full_path key, and the IntlDatePatternGenerator class—each explained with clear code examples.

BackendEnumsFibers
0 likes · 15 min read
Top 10 New Features in PHP 8.1
21CTO
21CTO
Nov 26, 2021 · Backend Development

What’s New in PHP 8.1? Enumerations, Read‑only Properties, Fibers and More

The PHP 8.1 release introduces enumerations, first‑class read‑only properties, the never return type, array_is_list, Fibers and other enhancements while also outlining deprecations and the newly formed PHP Foundation that supports the language’s future development.

Fibersbackend-developmentenumerations
0 likes · 5 min read
What’s New in PHP 8.1? Enumerations, Read‑only Properties, Fibers and More
php Courses
php Courses
Nov 16, 2021 · Backend Development

Understanding PHP 8.1 Fibers: Theory, Practical Use, and Limitations

This article explains the concept of PHP 8.1 Fibers, compares synchronous and parallel HTTP request handling, shows how to implement simple asynchronous workflows with sockets or ReactPHP, and discusses why Fibers are low‑level building blocks rather than a complete async solution.

AsyncBackendFibers
0 likes · 8 min read
Understanding PHP 8.1 Fibers: Theory, Practical Use, and Limitations
JavaEdge
JavaEdge
May 17, 2021 · Backend Development

Why the Thread‑Per‑Message Model Still Matters and How Java Loom Fibers Make It Viable

The article explains the core of concurrent programming—synchronization, mutual exclusion, and task division—introduces the Thread‑Per‑Message pattern, its drawbacks with heavyweight Java threads, and shows how Java's lightweight Loom fibers can implement the pattern efficiently for moderate concurrency scenarios.

FibersJavaLoom
0 likes · 5 min read
Why the Thread‑Per‑Message Model Still Matters and How Java Loom Fibers Make It Viable
Laravel Tech Community
Laravel Tech Community
Apr 6, 2021 · Backend Development

Upcoming PHP 8.1 Features and Release Timeline

PHP 8.1 is being developed with an Alpha release slated for June and a GA launch in November, introducing enums, new fsync/fdatasync functions, inheritance cache performance gains, Fiber support for async programming, and added xxHash and MurmurHash V3 hashing algorithms.

EnumsFibersPHP8.1
0 likes · 2 min read
Upcoming PHP 8.1 Features and Release Timeline
Node Underground
Node Underground
Nov 7, 2016 · Backend Development

Generators vs Node-Fibers: Which Async Pattern Wins in Node.js?

Both ES6 generators and node-fibers enable coroutine-style asynchronous flow in Node.js without blocking the entire process, but they differ in syntax, safety, flexibility, and invasiveness, prompting developers to weigh the trade‑offs between readability and minimal code intrusion.

CoroutinesFibersGenerators
0 likes · 3 min read
Generators vs Node-Fibers: Which Async Pattern Wins in Node.js?