Aggregating Data Registries with Go
eris.okfn.org
Aggregating Data Registries with Go
1–4 of 4 posts
Re: Aggregating Data Registries with Go
#2About the need to represent the CKAN ORM in Go, in order to get some useful JSON deserialization going; I have found this be to useful myself in a few cases. mainly when wrapping RESTful services exposed as JSON.
You mentioned it was 'unexpected', but would you also qualify it as a downside to the way python handled this?
With a large object model, I can see how maintenance becomes a little tricky. Specially since Go has no notion of object relations.
Re: Aggregating Data Registries with Go
#3However for anything more complicated than that you start having to model the data anyways, in Python or Go or any other language otherwise it will quickly devolve into unmaintainable spaghetti. In this case, I was forced to do this early on, which made me think through the structure of the program more thoroughly than I might otherwise have done.