#vBrownBag Google Cloud Platform – Google Cloud Datastore with Sandeep Dinesh (@sandeepdinesh)

Sandeep Dinesh covers the use cases for NoSQL databases before diving into the features of Google Cloud Datastore and wraps up with a live Python and Datastore demo.

Google Cloud Datastore Video

You can find Sandeep on Twitter @sandeepdinseh and examples like the one used tonight on https://github.com/thesandlord/samples/tree/master/google-cloud-datastore/interactive-demo

Originally published at https://vbrownbag.comm – Sign up for the live #vBrownBag broadcast at https://vbrownbag.comm/brownbags/ where you can also get updates and view our past series such as the Automate All The Things series at https://vbrownbag.comm/vbrownbag-automate-all-the-things-training-schedule/, Cisco certification series https://vbrownbag.comm/vbrownbag-cisco-certification-track/ or the Couch to OpenStack series at http://openstack.prov12n.com/openstack_phase_1/

One thought on “#vBrownBag Google Cloud Platform – Google Cloud Datastore with Sandeep Dinesh (@sandeepdinesh)”

  • Sandeep here. The reason the query didn’t work is because story_id we get from the key of the Story is a number, and the storyid field in the Comment kind is a string in Datastore. Just change the filter to unicode(story_id) and it will work. Updated code will be pushed to Github!

Comments are closed.