Events can provide a great away to build de-coupled applications and allows you to tap into the core of your application without modifying its code. To fire an event, just tell the Event class the name of the event you want to fire: $responses = Event::fire(‚user.updated‘); Notice that we assigned the result of the fire […]
Read MoreKategorie: PIMF
PHP Nuclear Reactor
Asynchronous programming is a way to create programs that can execute multiple parallel tasks faster in the same process by executing code while other parts if the programs wait for I/O operations to finish, like database accesses, file accesses, network accesses, etc.. ReactPHP is a low level library similar to JavaScript Node.js that can be […]
Read MoreWhy reactive application?
Application requirements have changed dramatically in recent years. Only a few years ago a large application had tens of servers, seconds of response time, hours of offline maintenance and gigabytes of data. Today applications are deployed on everything from mobile devices to cloud-based clusters running thousands of multi-core processors. Users expect millisecond response times and […]
Read MoreCheckout PIMF Starter Book
This is a hands-on book. You won’t be able to complete it by reading it in a metro on a way to work. You’ll have to read this book while in front of a computer getting your hands dirty. You will learn developing console and web applications as well as micro services. This book is […]
Read More