For a much simpler solution to the json graph problem: https://github.com/jsog/jsog Implementations in Javascript, Python, Ruby, and Java.
I much prefer the JSON-API approach by Yehuda Katz, et al.[1] https://gist.github.com/21echoes/a1ca3e4376262da32297 It's definitely designed to be used in a RESTful-esque situation (the reference keys are a type/id tuples), but that's the dominant JSON use case anyway. For an example of why you'd want type/id tuples over JSOG's plain string @id -- while in the given JSOG example, all items are People, referencing an…
Netflix Releases Falcor Developer Preview
31–40 of 53 posts
Re: Netflix Releases Falcor Developer Preview
#32Re: Netflix Releases Falcor Developer Preview
#33I really admire Netflix's ability to put together developer documentation for their open source projects. I think it reflects well on their engineering culture. I was similarly impressed when I was reading the documentation for Hystrix, which seems to share some functionality with Falcor, like request batching and caching. The path syntax is very readable and obviously plays to JavaScripts strengths as a dynamic lang…
On the other hand, it looks very nice and the document is very well done as well
Re: Netflix Releases Falcor Developer Preview
#34I wish the website would link to this talk which gives some background on how they got to falcor. https://www.youtube.com/watch?v=hOE6nVVr14c
Re: Netflix Releases Falcor Developer Preview
#35I wish the website would link to this talk which gives some background on how they got to falcor. https://www.youtube.com/watch?v=hOE6nVVr14c
Re: Netflix Releases Falcor Developer Preview
#36I wish they'd tried to work with existing formats :( http://jsonapi.org/ / https://github.com/jsog/jsog
JSON Graph seems to just need one: { $type: "ref" }
Re: Netflix Releases Falcor Developer Preview
#37I wish the website would link to this talk which gives some background on how they got to falcor. https://www.youtube.com/watch?v=hOE6nVVr14c
Re: Netflix Releases Falcor Developer Preview
#38Re: Netflix Releases Falcor Developer Preview
#39I wish they'd tried to work with existing formats :( http://jsonapi.org/ / https://github.com/jsog/jsog
Re: Netflix Releases Falcor Developer Preview
#40This seems like it could be as much of a curse as a blessing. I hope 1.0 ships with a good development/debug mode to gauge the efficiency auto-generated requests.