On 5 August 2013 04:41, Yves S. Garret <[email protected]> wrote: > Is there any free couchdb data that I can load up into my database and play > with it? Say I'd like > 1000 documents of recipes/song names/city names or something. Any ideas?
Use http://json-generator.appspot.com/ and do a _bulk_docs upload https://couchdb.readthedocs.org/en/latest/api/database.html#post-db-bulk-docs 1000 docs can be done in 1 POST easily. Alternatively you can replicate the npm registry (boooooring data I know) from http://isaacs.iriscouch.com/registry and cancel the replication after you get ~ 1000 docs. It's a 35GiB db so you don't want to finish. A+ Dave
