- Drupal 8 Module Development
- Daniel Sipos
- 237字
- 2021-07-02 12:22:39
What is a service?
A service is an object that gets instantiated by a Service Container and is used to handle operations in a reusable way, for example, performing calculations and interacting with the database, an external API, or any number of things. Moreover, it can take dependencies (other services) and use them to help out. Services are a core part of the dependency injection (DI) principle that is commonly used in modern PHP applications and in Drupal 8.
If you don't have any experience with these concepts, an important thing to note is also that they are globally registered with the service container and instantiated only once per request. This means that altering them after you requested them from the container means that they stay altered even if you request them again. In essence, they are singletons. So, you should write your services in such a way that they stay immutable, and most of the data they need to process is either from a dependency or passed in from the client that uses it (and does not affect it).
- scikit-learn Cookbook
- Visual C++程序設計學習筆記
- Computer Vision for the Web
- Scala Design Patterns
- Python網絡爬蟲從入門到實踐(第2版)
- oreilly精品圖書:軟件開發者路線圖叢書(共8冊)
- Java程序設計與計算思維
- JavaScript前端開發與實例教程(微課視頻版)
- Linux網絡程序設計:基于龍芯平臺
- JSP開發案例教程
- 網絡爬蟲原理與實踐:基于C#語言
- Modern JavaScript Applications
- Oracle從入門到精通(第5版)
- RISC-V體系結構編程與實踐(第2版)
- Learning Laravel's Eloquent