@spine-event-engine/storage 2.0.0-snapshot.5 → 2.0.0-snapshot.7
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 +10 -10
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -125,8 +125,8 @@ The storage API clones data at its boundaries. For the base factory and the
|
|
|
125
125
|
in-memory implementation, closing a factory prevents new record handles while
|
|
126
126
|
existing handles remain usable. Closing a record handle invalidates that
|
|
127
127
|
handle's later operations. Other adapters can close live handles; see their
|
|
128
|
-
[Datastore reference](https://github.com/SpineEventEngine/spine-ts/blob/
|
|
129
|
-
[MySQL reference](https://github.com/SpineEventEngine/spine-ts/blob/
|
|
128
|
+
[Datastore reference](https://github.com/SpineEventEngine/spine-ts/blob/master/packages/storage-datastore/REFERENCE.md) and
|
|
129
|
+
[MySQL reference](https://github.com/SpineEventEngine/spine-ts/blob/master/packages/storage-rdbms/REFERENCE.md) before choosing shutdown
|
|
130
130
|
behavior.
|
|
131
131
|
|
|
132
132
|
## 🧩 Keep compatible record families separate
|
|
@@ -169,11 +169,11 @@ storage. `@spine-event-engine/storage-rdbms` provides MySQL storage. Configure
|
|
|
169
169
|
those packages in application code and pass the resulting factory to the Spine
|
|
170
170
|
server; this package does not choose a database.
|
|
171
171
|
|
|
172
|
-
| Need | Adapter
|
|
173
|
-
| --------------------------- |
|
|
174
|
-
| Local development and tests | `InMemoryStorageFactory` in this package
|
|
175
|
-
| Google Cloud Datastore | [`@spine-event-engine/storage-datastore`](https://github.com/SpineEventEngine/spine-ts/blob/
|
|
176
|
-
| MySQL | [`@spine-event-engine/storage-rdbms`](https://github.com/SpineEventEngine/spine-ts/blob/
|
|
172
|
+
| Need | Adapter |
|
|
173
|
+
| --------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
|
|
174
|
+
| Local development and tests | `InMemoryStorageFactory` in this package |
|
|
175
|
+
| Google Cloud Datastore | [`@spine-event-engine/storage-datastore`](https://github.com/SpineEventEngine/spine-ts/blob/master/packages/storage-datastore/README.md) |
|
|
176
|
+
| MySQL | [`@spine-event-engine/storage-rdbms`](https://github.com/SpineEventEngine/spine-ts/blob/master/packages/storage-rdbms/README.md) |
|
|
177
177
|
|
|
178
178
|
## ⚠️ Lifecycle differences
|
|
179
179
|
|
|
@@ -184,7 +184,7 @@ shutdown and queries.
|
|
|
184
184
|
|
|
185
185
|
## 🔗 Learn more
|
|
186
186
|
|
|
187
|
-
- [Datastore adapter](https://github.com/SpineEventEngine/spine-ts/blob/
|
|
188
|
-
- [MySQL adapter](https://github.com/SpineEventEngine/spine-ts/blob/
|
|
189
|
-
- [Server](https://github.com/SpineEventEngine/spine-ts/blob/
|
|
187
|
+
- [Datastore adapter](https://github.com/SpineEventEngine/spine-ts/blob/master/packages/storage-datastore/README.md)
|
|
188
|
+
- [MySQL adapter](https://github.com/SpineEventEngine/spine-ts/blob/master/packages/storage-rdbms/README.md)
|
|
189
|
+
- [Server](https://github.com/SpineEventEngine/spine-ts/blob/master/packages/server/README.md)
|
|
190
190
|
- [Reference for coding agents](REFERENCE.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spine-event-engine/storage",
|
|
3
|
-
"version": "2.0.0-snapshot.
|
|
3
|
+
"version": "2.0.0-snapshot.7",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -30,6 +30,6 @@
|
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@bufbuild/protobuf": "2.12.1",
|
|
33
|
-
"@spine-event-engine/proto": "2.0.0-snapshot.
|
|
33
|
+
"@spine-event-engine/proto": "2.0.0-snapshot.7"
|
|
34
34
|
}
|
|
35
35
|
}
|