-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement of Store model #41
Comments
Any updates on the subtasks? |
#51 |
I found that the schema defined in #51 missed storage of |
This is my considerations: |
Sure, developers should define a schema for |
Of course, I forget the |
I found that |
I have a simple question for From my perspective, when the type script is null, the |
I mistakenly read #41 (comment), I thought it means that I should distinguish where the data was from. And I was confused thought @Keith-CY #41 (comment) this comment you want to know how to define a schema to save data in |
Another problem here is that the args of the cell may also hold data, but I don't see this part in the implementation |
Yes, your problem is duplicate to #41 (comment) |
Yes, Take
Ref: https://blog.cryptape.com/omnilock-a-universal-lock-that-powers-interoperability-1 |
@Daryl-L I have removed @Keith-CY @zhengjianhui I will add the |
I have another simple question, about const PARENT_REF = {
name: `parent`,
path: `/`,
protocol: `local`,
uri: `local://parent`,
}
const CHILD_REF = {
name: `child`,
path: `/parent/`,
protocol: `local`,
uri: `local://parent/child`,
}
class ParentActor extends ActorBase {}
class ChildActor extends ActorBase {}
Reflect.defineMetadata(ProviderKey.Actor, { ref: PARENT_REF }, ParentActor)
Reflect.defineMetadata(ProviderKey.Actor, { ref: CHILD_REF }, ChildActor) Let's replace the |
We can define the parent |
#162 for molecule serialize and deserialize. |
We can reference the design of #2
The text was updated successfully, but these errors were encountered: