Skip to content
This repository has been archived by the owner on Jul 22, 2018. It is now read-only.

Schemaless SQL The Best of Both Worlds

benjaminoakes edited this page May 28, 2012 · 3 revisions

Presenter: Will Leinweber

Bio

As a member of Heroku's incomparable Department of Data, Will runs the world's largest Postgres service. He enjoys improving experiences, pushing boundaries, and simplifying everything. @leinweber

Abstract

Schemaless database are a joy to use because they make it easy to iterate on your app, especially early on. And to be honest, the relational model isn't always the best fit for real-world evolving and messy data.

On the other hand, relational databases are proven, robust, and powerful. Also, over time as your data model stabilizes, the lack of well-defined schemas becomes painful.

How are we supposed to pick one or the other? Simple: pick both. Fortunately recent advances in Postgres allow for a hybrid approach that we've been using at Heroku. The hstore datatype gives you key/value in a single column, and PLV8 enables JavaScript and JSON in Postgres. These and others in turn make Postgres the best document database in the world.

We will explore the power of hstore and PLV8, explain how to use them in your project today, and examine their role in the future of data.

Summary

TODO

Notes

  • This is a file generated from the RailsConf JSON. Please remove this notice when adding notes.
  • If you're interested in the generator code, see the "generator" directory.
  • This layout is just a suggestion.
  • Bullet points might work well. Paragraphs too. Up to you. :)

External Links

A crowd-sourced conference wiki!
Working together is better. :)




Clone this wiki locally