Is CouchDB best suited for dynamic languages? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T20:54:29Z http://stackoverflow.com/feeds/question/706417 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/706417/is-couchdb-best-suited-for-dynamic-languages 3 Is CouchDB best suited for dynamic languages? paulosuzart 2009-04-01T16:43:09Z 2009-04-01T17:13:09Z <p>I´m in touch with <a href="http://couchdb.apache.org" rel="nofollow">CouchDB</a> and the idea of mapping its results to Scala objects, as well as find some natural way to iteract with it, came immediatly.</p> <p>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.</p> <p>Any good aproach to do things with Couch in static languages?</p> http://stackoverflow.com/questions/706417/is-couchdb-best-suited-for-dynamic-languages/706523#706523 7 Answer by Jorge Ortiz for Is CouchDB best suited for dynamic languages? Jorge Ortiz 2009-04-01T17:13:09Z 2009-04-01T17:13:09Z <p>I understand that CouchDB works purely with JSON objects. Since JSON is untyped, it's tempting to believe that it's more naturally suited for dynamic languages. However, XML is generally untyped too, and Scala has very good library support for creating and manipulating XML. For an exploration of Scala's XML features, see: <a href="http://www.ibm.com/developerworks/library/x-scalaxml/" rel="nofollow">http://www.ibm.com/developerworks/library/x-scalaxml/</a></p> <p>Likewise with JSON. With the proper library support, dealing with JSON can feel natural even in static languages. For one approach to dealing with JSON data in Scala, see this article: <a href="http://technically.us/code/x/weaving-tweed-with-scala-and-json/" rel="nofollow">http://technically.us/code/x/weaving-tweed-with-scala-and-json/</a></p> <p>With object databases in general, sometimes it's convenient to define a "model" (using, for example, a class in the language) and use JSON or XML or some other untyped document language to be a serialized representation of the class. Proper library support can then translate between the serialized form (like JSON) and the in-memory data structures, with static typing and all the goodies that come with it. For one example of this approach, see Lift's Record which has added conversions to and from JSON: <a href="http://groups.google.com/group/liftweb/msg/63bb390a820d11ba" rel="nofollow">http://groups.google.com/group/liftweb/msg/63bb390a820d11ba</a></p>