> so i need any advise from you guys, which path i need to choose, using > plain http connection or using a library ?, to connect Rails App to > Couch Db
I would go for a library as you don't want to have to use Net::HTTP and JSON parsing everywhere. Usually you want a library to abstract this away. There are several libraries out there for Ruby. Some are very low-level like couchrest, some are very high-level like SimplyStored. Jonathan -- Jonathan Weiss http://blog.innerewut.de http://twitter.com/jweiss
