Skip to content

Commit e27de33

Browse files
committed
Add performance tag to relevant patterns iluwatar#213
1 parent 7ac7e3b commit e27de33

6 files changed

Lines changed: 6 additions & 4 deletions

File tree

caching/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ categories: Other
77
tags:
88
- Java
99
- Difficulty-Intermediate
10-
- Caching
10+
- Performance
1111
---
1212

1313
**Intent:** To avoid expensive re-acquisition of resources by not releasing

flyweight/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ tags:
88
- Java
99
- Gang Of Four
1010
- Difficulty-Intermediate
11-
- Caching
11+
- Performance
1212
---
1313

1414
**Intent:** Use sharing to support large numbers of fine-grained objects

lazy-loading/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ tags:
88
- Java
99
- Difficulty-Beginner
1010
- Idiom
11-
- Caching
11+
- Performance
1212
---
1313

1414
**Intent:** Lazy loading is a design pattern commonly used to defer

object-pool/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ categories: Creational
77
tags:
88
- Java
99
- Difficulty-Beginner
10-
- Caching
10+
- Performance
1111
---
1212

1313
**Intent:** When objects are expensive to create and they are needed only for

service-locator/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ categories: Structural
77
tags:
88
- Java
99
- Difficulty-Beginner
10+
- Performance
1011
---
1112

1213
**Intent:** Encapsulate the processes involved in obtaining a service with a

thread-pool/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ categories: Concurrency
77
tags:
88
- Java
99
- Difficulty-Intermediate
10+
- Performance
1011
---
1112

1213
**Intent:** It is often the case that tasks to be executed are short-lived and

0 commit comments

Comments
 (0)