Fakultas Ilmu Komputer UI

Skip to content
Snippets Groups Projects
Commit 5d98eb1d authored by noQils's avatar noQils
Browse files

add Reflection Publisher-3

parent f51d9fe9
Branches master
No related tags found
No related merge requests found
......@@ -92,11 +92,11 @@ The Singleton pattern ensures that only one instance of a structure exists throu
#### Reflection Publisher-2
### 1. Why Separate "Service" and "Repository" from a Model in MVC?
Separating "Service" and "Repository" from the Model in MVC follows the **Separation of Concerns** principle, which improves maintainability and scalability. The **Repository** is responsible for interacting with the database, handling queries, and ensuring efficient data retrieval, while the **Service** layer processes business logic and enforces rules. This separation prevents the Model from becoming bloated with both business logic and persistence logic. Additionally, it enhances testability, as we can test business logic independently from the database. It also increases flexibility, making it easier to switch database implementations without modifying business logic. Encapsulation ensures that database operations do not leak into other parts of the application, leading to better security and stability. Without these layers, modifying one aspect of the systemsuch as changing the database structurewould require altering the entire Model, making the code harder to maintain and extend.
Separating "Service" and "Repository" from the Model in MVC follows the **Separation of Concerns** principle, which improves maintainability and scalability. The **Repository** is responsible for interacting with the database, handling queries, and ensuring efficient data retrieval, while the **Service** layer processes business logic and enforces rules. This separation prevents the Model from becoming bloated with both business logic and persistence logic. Additionally, it enhances testability, as we can test business logic independently from the database. It also increases flexibility, making it easier to switch database implementations without modifying business logic. Encapsulation ensures that database operations do not leak into other parts of the application, leading to better security and stability. Without these layers, modifying one aspect of the system such as changing the database structure would require altering the entire Model, making the code harder to maintain and extend.
### 2. What Happens if We Only Use the Model?
If we only use the Model without separating the Service and Repository layers, the system quickly becomes tightly coupled and difficult to manage. The Model would need to handle database queries, business logic, and possibly even API interactions, leading to a complex and rigid structure. As the application grows, interactions between different modelssuch as `Program`, `Subscriber`, and `Notification`would create tangled dependencies. For example, if `Notification` needs data from `Subscriber` but `Subscriber` also updates `Notification`, maintaining such relationships directly within the Model would increase code complexity and risk unintended side effects. Debugging and modifying such a system would be challenging since any change in one model could have unpredictable consequences across others. Additionally, testing would become cumbersome because unit tests would need to interact with the database, slowing down development and making the codebase more fragile.
If we only use the Model without separating the Service and Repository layers, the system quickly becomes tightly coupled and difficult to manage. The Model would need to handle database queries, business logic, and possibly even API interactions, leading to a complex and rigid structure. As the application grows, interactions between different models such as `Program`, `Subscriber`, and `Notification` would create tangled dependencies. For example, if `Notification` needs data from `Subscriber` but `Subscriber` also updates `Notification`, maintaining such relationships directly within the Model would increase code complexity and risk unintended side effects. Debugging and modifying such a system would be challenging since any change in one model could have unpredictable consequences across others. Additionally, testing would become cumbersome because unit tests would need to interact with the database, slowing down development and making the codebase more fragile.
### 3. Exploring Postman for API Testing
......@@ -104,3 +104,11 @@ Postman is an invaluable tool for API development and testing, allowing develope
#### Reflection Publisher-3
### 1. Observer Pattern Variation Used in This Tutorial
In this tutorial, we use the **Push model** of the Observer Pattern. The `notify` function constructs a `Notification` payload and directly sends it to all subscribers using `subscriber_clone.update(payload_clone)`. This means the publisher (the system handling notifications) proactively pushes data to subscribers without them requesting it.
### 2. Advantages and Disadvantages of Using the Pull Model
If we used the **Pull model** instead, subscribers would request updates from the publisher rather than receiving notifications automatically. One advantage of this approach is that it reduces unnecessary notifications subscribers fetch updates only when needed. This can be beneficial in systems with many inactive subscribers. However, a major downside is increased complexity and potential delays. Subscribers must continuously check for updates, leading to inefficient polling, wasted resources, and a slower response time compared to the Push model.
### 3. Impact of Not Using Multi-threading in the Notification Process
If we remove multi-threading from the notification process, the system will notify each subscriber sequentially, meaning one update must complete before moving to the next. This could lead to significant delays, especially if a subscriber's update request is slow or times out. In contrast, with multi-threading, each subscriber is notified independently and concurrently, improving efficiency and ensuring that slow subscribers do not block the notification process for others.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment