-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
I think this is a pretty good use of services. The services themselves do not really care if they are used from within one container or if they are used across containers. The container is like a process. You can start new ones using The container -- not the service per se -- is the entity that can be hot-swapped, so you could decide to run the whole GUI service in one container or split it out into more than one container, depending on your needs. There is more information available here: #869. |
Beta Was this translation helpful? Give feedback.
I think this is a pretty good use of services. The services themselves do not really care if they are used from within one container or if they are used across containers.
The container is like a process. You can start new ones using
spawn
and they run independently from each other. A typical use case for containers is providing services to other containers, but a single container can easily provide implementations of multiple different services.The container -- not the service per se -- is the entity that can be hot-swapped, so you could decide to run the whole GUI service in one container or split it out into more than one container, depending on your needs.
There is more information a…