You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following projections are persisted but do not define explicit indexes in `ConfigureIndexes`. They are primarily accessed by document ID (primary key), so additional indexes are not currently required.
111
+
112
+
#### `UserProfile`
113
+
- Access pattern: direct lookup by `userId`
114
+
- Why no explicit index: shopping cart/favorites data is loaded by ID, not searched
115
+
116
+
#### `BookStatistics`
117
+
- Access pattern: direct lookup by `bookId`
118
+
- Why no explicit index: statistics are loaded per book detail view
119
+
120
+
#### `AuthorStatistics`
121
+
- Access pattern: direct lookup by `authorId`
122
+
- Why no explicit index: aggregate counters are loaded by ID only
123
+
124
+
#### `CategoryStatistics`
125
+
- Access pattern: direct lookup by `categoryId`
126
+
- Why no explicit index: aggregate counters are loaded by ID only
127
+
128
+
#### `PublisherStatistics`
129
+
- Access pattern: direct lookup by `publisherId`
130
+
- Why no explicit index: aggregate counters are loaded by ID only
0 commit comments