File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ Read [The Manual](./manual/0-index.md)
7
7
8
8
- [ Relationships] ( ./relationships/index.md )
9
9
- [ Requests] ( ./requests/index.md )
10
+ - [ Reactivity] ( ./reactive-data/index.md )
10
11
- [ Typescript] ( ./typescript/index.md )
11
12
- [ Terminology] ( ./terminology.md )
12
13
- [ Cookbook] ( ./cookbook/index.md )
Original file line number Diff line number Diff line change @@ -17,3 +17,9 @@ Each form of data can be accessed and managed reactively through one of two mode
17
17
These modes are interopable. The reactive object (record) for a resource in PolarisMode can relate to
18
18
a record in LegacyMode and vice-versa. This interopability is true whether the record in LegacyMode is
19
19
a SchemaRecord or a Model.
20
+
21
+ These reactive primitives use fine-grained signals-based reactivity. Currently, we use
22
+ glimmer's (Ember's) implementation of ` Signal ` (` @tracked ` ) and ` Computed ` (` @cached ` );
23
+ however, we've architected our use to be pluggable and will soon enable configuration
24
+ of any desired implementation, thus making WarpDrive compatible with any signals compatible
25
+ library or framework.
You can’t perform that action at this time.
0 commit comments