docs: remove some old diagrams

This commit is contained in:
Ilkka Seppälä
2025-04-22 07:56:11 +03:00
parent d80eca177b
commit 1cde704bcb
2 changed files with 0 additions and 8 deletions
-4
View File
@@ -199,10 +199,6 @@ The program output:
10:02:09.898 [main] INFO com.iluwatar.dao.App -- customerDao.getAllCustomers(): java.util.stream.ReferencePipeline$Head@f2f2cc1
```
## Detailed Explanation of Data Access Object Pattern with Real-World Examples
![Data Access Object](./etc/dao.png "Data Access Object")
## When to Use the Data Access Object Pattern in Java
Use the Data Access Object in any of the following situations:
-4
View File
@@ -128,10 +128,6 @@ The console output:
In this way, the data-locality module demonstrates the Data Locality pattern. By updating all components of the same type together, it increases the likelihood that the data needed for the update is already in the cache, thereby improving performance.
## Detailed Explanation of Data Locality Pattern with Real-World Examples
![Data Locality](./etc/data-locality.urm.png "Data Locality pattern class diagram")
## When to Use the Data Locality Pattern in Java
This pattern is applicable in scenarios where large datasets are processed and performance is critical. It's particularly useful in: