I believe I understand this in terms of hardware, where multiple individuals 'share' the same processing and memory for their solutions. But I've been looking at gmail and facebook, are those multi-tenanted solutions? Is it that as long as my solution can support multiple users, its multi-tenanted?
Asked
Active
Viewed 8,829 times
17
-
Related post - [Saas: Single-instance vs Multi-instance vs Single-tenant vs Multi-tenant?](https://stackoverflow.com/q/54892681/465053) – RBT Feb 24 '20 at 10:51
1 Answers
16
You can read this post concerning your question.
Multi-tenant vs multi-user
Any system may have multiple users. In a multi-user system multiple users can use the application (e.g. Exact Synergy). The term multi-user does not imply anything for the architecture of the system. On the other hand, while a multi-tenant system is a multi-user system, multi-tenancy tells us something about the architecture of the system: namely that multiple users share the same application and database instance. Note that it is possible to have a multi-user system, which is not multi-tenant.

Mehper C. Palavuzlar
- 10,089
- 23
- 56
- 69
-
"Note that it is possible to have a multi-user system, which is not multi-tenant" Can you please provide an example. – Sandeep Jindal Sep 28 '15 at 16:50
-
3@SandeepJindal : An example would be Slack vs whatsapp. Slack is a multi-tenant system, where slack runs the single (or a single group ) instance of application and data base servers and multiple users login to their teams(tenants). While whatsapp run on individual mobiles. It is just the multi user system and not multi tenant. – Abhinav Ravi May 04 '17 at 11:27