in reply to Simple JSON based data storage - what would you recommend?

If running a big RDBMS is feasible: PostgreSQL has pretty good json support, extended in the upcoming v9.4.

PostgreSQL docs: JSON datatypes (links to 9.4, but 9.3 links are easily reached from there)

postgres/mongodb JSON comparison (EnterpriseDB is a postgres support company)

  • Comment on Re: Simple JSON based data storage - what would you recommend?

Replies are listed 'Best First'.
Re^2: Simple JSON based data storage - what would you recommend?
by blindluke (Hermit) on Oct 14, 2014 at 13:35 UTC

    Thanks for the reply. It's definitely feasible, but I'm looking for a simple solution. As I said, there are no relations between the data other than time precedence.

    - Luke