docs: improve leader election

This commit is contained in:
Ilkka Seppälä
2024-05-06 13:25:09 +03:00
parent cb1872a7a4
commit c93f894814
10 changed files with 119 additions and 782 deletions
+2 -2
View File
@@ -165,9 +165,9 @@ Trade-offs:
## Related Patterns
* Proxy: Can act as a placeholder for lazy-loaded objects, deferring their actual loading until necessary.
* [Proxy](https://java-design-patterns.com/patterns/proxy/): Can act as a placeholder for lazy-loaded objects, deferring their actual loading until necessary.
* Virtual Proxy: Specific type of Proxy that handles object creation on demand.
* Singleton: Often combined with Lazy Loading to ensure only one instance of an object is created and loaded lazily.
* [Singleton](https://java-design-patterns.com/patterns/singleton/): Often combined with Lazy Loading to ensure only one instance of an object is created and loaded lazily.
## Credits