couchdb

CouchApps and user authentication

I posted a variation of this question to the CouchDB user list and haven't received a response yet. I'm curious to know if anyone else has built a so-called "CouchApp"; a pure HTML/JavaScript application hosted directly within CouchDB. If so, how did you handle user authentication? I'd like to be able to create a typical login form (u...

How to install couchDB on a media temple server?

The biggest issues im running into starting a project with CouchDB is the nightmare involved in getting it up and running. Any tips for getting couchDB up on a media temple server or any server really? ...

Amazon S3 architecture

While the post @ http://highscalability.com/amazon-architecture explains Amazon's architecture in general, I am interested in knowing how Amazon S3 is implemented. Some of my guesses are A distributed file system like HDFS http://hadoop.apache.org/core/docs/current/hdfs_design.html A non relational persistent DB like CouchDB http://co...

best practices for <embed> javascript code

Hi all, I'm starting a project where I need to display my wife's picture books on her blog. I've got the books' data on a database - couchdb - and I want to write a player she can easily embed in her blog. I've got most of the player written in Html, JavaScript & jQuery. Next, I need to write the html and javascript code to encapsulat...

voldemort vs. couchdb

I am trying to decide whether to use voldemort or couchdb for an upcoming healthcare project. I want a storage system that has high availability , fault tolerance, and can scale for the massive amounts of data being thrown at it. What is the pros/cons of each? Thanks ...

How do you design a schema to efficiently query nested items in a key-value database?

I'm using Mnesia with Erlang, but this question applies to any key-value db like couchdb, etc. I'm trying to break free of the RDBMS thought process, but I can't wrap my head around how to efficiently implement this kind of schema. Say I have a User record, and he has many SubItemA records, which has many SubItem B records, so: User -...

What are the advantages of CouchDB vs an RDBMS

I've heard a lot about couchdb lately, and am confused about what it offers. ...

Applications for using couchDB and a RDBMS together

Wondering if there was a scenario where one would use a document-based DB and a relational DB together in a best-of-both-worlds scenario? ...

Migrate from couchDB to RDBMS

Wondering if it is possible to migrate from a document-based DB (eg. couchDB) to a RDBMS (eg. MySQL). ...

What blogs/websites are the best central source of information on CouchDB?

I'm trying to find information about CouchDB and it seems quite sparse or not centralized at least. What blogs/websites are the best central source of information on CouchDB? Are there any books on the subject? ...

Is CouchDB best suited for dynamic languages?

I´m in touch with CouchDB and the idea of mapping its results to Scala objects, as well as find some natural way to iteract with it, came immediatly. But I see that Dynamic languages such as Ruby and Javascript do things very well with the json/document-centric/shchema-free aproach of CouchDB. Any good aproach to do things with Couch i...

Fast unsafe easy PHP key-value database?

I need to store JSON strings against string keys (that should be like 255 characters long). Only querying by key is necessary, so basically just a persistent hash table. It doesn't need to be very safe to write to, but should be kind of fast (few thousand writes per second on single box). If two processes happen to try to write the same ...

When is it appropriate to use couchDB?

I'm currently writing an app with quite a few different data persistence needs at very different layers and I keep wondering... when is it appropriate and when is it not appropriate to use couchDB to satisfy my persistence needs? ...

CouchDB views erroring out

I've been playing with CouchDB (and the RelaxDB ruby library) but creating a view and then trying to access it causes a nasty non specific error. I stepped back a step because I thought RelaxDB might be incompatible with the CouchDB version I'm using(0.8.1), but even when I create a new database and equivalent views and call it by manual...

Should I use CouchDB or SimpleDB?

I'm creating an application that will be hosted on amazon EC2 and a lot of the data that'll be saved is more document oriented (as well as saving tweets and such related to those documents). Right now I'm at a crossroads... should I use simpleDB or couchDB? Whats the pros/cons of using either? Should I just try both for a month and dec...

Getting started with CouchDB.

How did you get started with CouchDB? Resources to recommend? ...

import json file to couch db-

If I have a json file that looks something like this: {"name":"bob","hi":"hello"} {"name":"hello","hi":"bye"} Is there an option to import this into couchdb? ...

Is it possible to have validations for basic_model (couchdb) in Ruby on Rails?

Hi, is it possible to use validations like: class Post < ActiveRecord::Base validates_presence_of :name, :title validates_length_of :title, :minimum => 5 end with basic_model? I tried reading the source, but I couldn't find anything there. Are those validates_ available for other model types, or only ActiveRecord::Base? Thank...

CouchDB Views: created_at greater than a passed value

I'm trying to write a couchdb view that takes a created_at timestamp in a sortable format (2009/05/07 21:40:17 +0000) and returns all documents that have a greater created_at value. I'm specifically using couch_foo but if I can figure out how to write the view I can create it in futon or in the couch_foo model instead of letting couch_f...

Databases using JSON as storage/transport format

How many database systems there are that use JSON for storage or transport? I know of: CouchDB MongoDB DBSlayer I remember I saw yet another vendor in a SO user's profile. That systems was using what they called binary JSON, but I can't remember the name of the product. Lately, it appears that more and more DB projects are looking t...