Google News
logo
Microsoft Azure - Interview Questions
Explain the types of services you can build with the Service Fabric?
Majorly, two types of services you can build on Service Fabric :
 
Stateless Services : No state is stored in the service. The longer-term state is stored in an external database. This is the typical application/data layer approach to build services.

Stateful Services : The state is stored in the service. Allows the state to persist without the need for an external database.
Advertisement