-
Notifications
You must be signed in to change notification settings - Fork 6
Converting Ref<?>s to @DocumentField(type = FieldType.Text) #3
Comments
I think we can allow users to specify a converter function for any kind of field which translates field value to text. This will not only be useful for Key and Ref but also for types like Set, List etc. For Set and List, a simple invocation of toString() will give us TEXT FieldType but it won't work for Ref and Key. Thoughts? |
IMO Ref/Key and Objectify integration should not be extendable/configurable. Objectify is "the" library for datastore, and doco wants to be the same for the document store [great idea BTW], so the two should work together. If I use @id and @documentid I would like Doco see convert the Ref/Key without any additional code necessary. Objectify can convert from/to string and I would think this is unique. A converter function would be nice for other datatypes, though, similar to Google's endpoint transformers. |
Converting Document back to POJO isn't really much useful IMO because not all the fields are saved in Document so reconstructed Entity will be always have partial information. If we move towards integration with Objectify, then just we should just retrieve back the Key from index.search() and fetch entire Entity using ofy(). |
I agree, I did not want to say that there should be an integration between the two, but the same terminology and syntax should be used, so they go well together. Without looking at your code, let me comment about this: Converting Ref<?>s to @DocumentField(type = FieldType.Text) Why do we need to specify the type? If Ref<> is String then we have text, if Ref<> is Long/long then we have number/numeric. I think I can say I don't care how my Ref<> is stored, as I only need to restore it to get my datastore entity back. I would suggest fixed conversions between datatypes and use type= optionally. Why let the developer make a decision they cannot make? I would prefer that doco made the decision for me. |
Any thoughts on integrating with ofy() and fetching entity using key? |
This question cost me two hours tonight ;-) and I am not sure if I should write about it as most of the things that came to my mind are just thoughts and speculations. But let me share them with you: I think I would probably not tightly integrate because you would have dependencies on objectify. In my opinion, the Java POJO entity must serve as common ground between objectify and doco, and not an integration between the two. Integration should always go via the entity (or objectify keys, which you probably should use to build on). So a call would look something like this (pseudo-code):
Alternatively I would also want to be able to store and retrieve the full entity from doco, without using objectify.
This would work as long as the Id is the same for both systems. As long as keys can be used interchangeably in both systems, the developer can switch back and forth between them. The developer could also persist using doco from the objectify @onsave lifecycle event. Let me tell you a few things that came to my mind:
I would love to work on this but my time doesn't allow, so sorry. It's a beautiful project and a great approach to make things easier for developers in Google cloud. doco is a great name, too. |
I wrote some code to add all fields of referenced entity (Ref) to search document with their name as Foo_. All user needs to do is annotate Ref entity with @documentref(type=Foo.class) annotation. I can create a pull request if everyone thinks that this is the right way to go. I'm using this in my own code and it works pretty well for me. |
Can doco deal with Ref and Key fields automatically? If not, how should I specify that values need to be fetched and stored in document?
The text was updated successfully, but these errors were encountered: