You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by Apache Wiki <wi...@apache.org> on 2009/09/16 18:50:45 UTC

[Couchdb Wiki] Update of "Getting started with Perl" by MichaelStevens

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification.

The following page has been changed by MichaelStevens:
http://wiki.apache.org/couchdb/Getting_started_with_Perl

The comment on the change is:
Document what on CPAN works

------------------------------------------------------------------------------
  Getting started with Perl and the CouchDB API.
  
  The following shows the basics of working with the raw CouchDB REST api from Perl. If you want a richer interface that more tightly maps Couch documents into Perl (so you don't have to deal with JSON manually, for example), you should pick your favourite out of the several implementations: [http://wiki.github.com/mndrix/net-couchdb Net::CouchDB], [http://search.cpan.org/dist/CouchDB-Client/ CouchDB::Client], [http://search.cpan.org/dist/AnyEvent-CouchDB/ AnyEvent::CouchDB], [http://search.cpan.org/~zaphar/DB-CouchDB-Schema-0.2.1/lib/DB/CouchDB/Schema.pm DB::CouchDB::Schema], or for POE lovers [http://search.cpan.org/dist/POE-Component-Client-CouchDB/ POE::Component::Client::CouchDB].
+ 
+ Currently (16/9/2009) Net::CouchDB and CouchDB::Client seem to not work against current couchdb. AnyEvent::CouchDB seems to work (tested getting a database and creating a document so far).
  
  Note that these examples all use the new version of CouchDB, with a JSON interface rather than XML.