@karmaniverous/entity-manager 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -92,7 +92,7 @@ export const config = {
|
|
|
92
92
|
// Bits represented by each shard key character. 3 bits means an octal
|
|
93
93
|
// shard key, so the first character yields 8 shards and the second
|
|
94
94
|
// yields 64.
|
|
95
|
-
nibbleBits:
|
|
95
|
+
nibbleBits: 3,
|
|
96
96
|
|
|
97
97
|
// Scheduled increases in shard key length. Keys are expressed as
|
|
98
98
|
// millisecond UTC timestamps. In production, these should not be
|
|
@@ -110,8 +110,8 @@ export const config = {
|
|
|
110
110
|
},
|
|
111
111
|
},
|
|
112
112
|
},
|
|
113
|
-
// Will be added to every entity object. Pick a value that
|
|
114
|
-
// entity data!
|
|
113
|
+
// Will be added to every entity object as appropriate. Pick a value that
|
|
114
|
+
// won't collide with entity data!
|
|
115
115
|
shardKeyToken: 'shardId',
|
|
116
116
|
};
|
|
117
117
|
```
|