-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
167 lines (167 loc) · 5.79 KB
/
Copy pathmanifest.json
File metadata and controls
167 lines (167 loc) · 5.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"topics": [
{
"name": "Java",
"pages": [
{ "title": "OOP", "path": "java/oops" },
{ "title": "Collections Framework", "path": "java/collections" },
{ "title": "Generics", "path": "java/generics" },
{ "title": "Exceptions", "path": "java/exceptions" },
{ "title": "Modern Java (8 → 21)", "path": "java/modern-java" },
{ "title": "Concurrency", "path": "java/concurrency" },
{ "title": "JVM Internals", "path": "java/jvm" },
{ "title": "Design Patterns", "path": "java/design-patterns" }
]
},
{
"name": "PostgreSQL",
"pages": [
{ "title": "SQL Fundamentals", "path": "postgresql/sql-fundamentals" },
{ "title": "Advanced Querying", "path": "postgresql/advanced-querying" },
{
"title": "Schema Design and Data Modeling",
"path": "postgresql/schema-design-data-modeling"
},
{ "title": "Indexing", "path": "postgresql/indexing" },
{
"title": "EXPLAIN ANALYZE and Query Optimization",
"path": "postgresql/explain-analyze-query-optimization"
},
{
"title": "Transactions, MVCC and Isolation",
"path": "postgresql/transactions-mvcc-isolation"
},
{
"title": "Locking and Concurrency",
"path": "postgresql/locking-concurrency"
},
{
"title": "VACUUM, WAL and Bloat",
"path": "postgresql/vacuum-wal-bloat"
},
{
"title": "Performance Tuning and Operations",
"path": "postgresql/performance-tuning-operations"
},
{
"title": "Replication and Scaling",
"path": "postgresql/replication-scaling"
},
{
"title": "Extensions and Specialized Features",
"path": "postgresql/extensions-specialized-features"
}
]
},
{
"name": "Spring",
"pages": [
{
"title": "Spring Core Fundamentals",
"path": "spring/spring-core-fundamentals"
},
{
"title": "Spring Boot Fundamentals",
"path": "spring/spring-boot-fundamentals"
},
{
"title": "Spring MVC and REST APIs",
"path": "spring/spring-mvc-rest-apis"
},
{
"title": "Spring JDBC and Database Access",
"path": "spring/spring-jdbc-database-access"
},
{
"title": "JPA and Hibernate Fundamentals",
"path": "spring/jpa-hibernate-fundamentals"
},
{
"title": "Spring Data JPA",
"path": "spring/spring-data-jpa"
},
{
"title": "Spring Transaction Management",
"path": "spring/spring-transaction-management"
},
{
"title": "Spring Security",
"path": "spring/spring-security"
},
{
"title": "Testing Spring Applications",
"path": "spring/testing-spring-applications"
},
{
"title": "Caching, Scheduling, Async Processing, and Events",
"path": "spring/caching-scheduling-async-events"
},
{
"title": "Observability and Production Operations",
"path": "spring/observability-production-operations"
},
{
"title": "Spring Internals and Interview Preparation",
"path": "spring/spring-internals-interview-preparation"
}
]
},
{
"name": "System Design and Distributed Systems",
"pages": [
{
"title": "System Design Fundamentals and Capacity Estimation",
"path": "systemdesign/system-design-fundamentals-capacity-estimation"
},
{
"title": "Networking, DNS, TCP, TLS, HTTP, REST, and RPC",
"path": "systemdesign/networking-dns-tcp-tls-http-rpc"
},
{
"title": "Scalability, Load Balancing, Service Discovery, and Rate Control",
"path": "systemdesign/scalability-load-balancing-service-discovery-rate-control"
},
{
"title": "Data Storage and Data-Model Selection",
"path": "systemdesign/data-storage-data-model-selection"
},
{
"title": "Caching and Content Delivery",
"path": "systemdesign/caching-content-delivery"
},
{
"title": "Distributed-Systems Fundamentals, Time, Ordering, and Consistency",
"path": "systemdesign/distributed-systems-time-ordering-consistency"
},
{
"title": "Replication, Partitioning, Sharding, and Quorum Systems",
"path": "systemdesign/replication-partitioning-sharding-quorum-systems"
},
{
"title": "Coordination, Consensus, Leader Election, Leases, and Distributed Locks",
"path": "systemdesign/coordination-consensus-leases-locks"
},
{
"title": "Resilience, Retries, Backpressure, and Overload Control",
"path": "systemdesign/resilience-retries-backpressure-overload"
},
{
"title": "Messaging, Event-Driven Architecture, and Stream Processing",
"path": "systemdesign/messaging-event-driven-stream-processing"
},
{
"title": "Observability, SRE, Capacity Planning, and Incident Response",
"path": "systemdesign/observability-sre-capacity-planning-incident-response"
},
{
"title": "Distributed Transactions, Sagas, Outbox, and Reliable Workflows",
"path": "systemdesign/distributed-transactions-sagas-outbox-reliable-workflows"
},
{
"title": "Architecture Styles, Modular Monoliths, Microservices, and Service Boundaries",
"path": "systemdesign/architecture-styles-modular-monoliths-microservices-service-boundaries"
}
]
}
]
}