I was reading about FDB record layer and so far it looks like only JAVA application can use the FDB record layer as it is a JAVA library. Please correct me if wrong.
Is it possible to read/write FDB record layer using golang? Any such support will be available in near future?
Is it possible to use record layer to design parent-child table relationship and update in one transaction .Any article/sample code for the same. I have read few articles such as FoundationDB Record Layer Overview but still it is not clear
The Record Layer doesn’t have any built-in support for validating foreign key relationships, which is probably the biggest missing piece in a parent-child data model. The suggestion there would be to build it on top of the Record Layer, by validating the presence of the parent when adding a new child (for example) by looking it up by ID. But more in-depth foreign key support is also a feature the Record Layer team has been thinking about how to properly push down as well
thanks … i will read on the link you have shared. Currently creating monitoring using golang and New relic API (we use New Rerlic API for custom metrics). Still new to FDB so thanks for the help