Dear Wiki user, You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification.
The "API_Cheatsheet" page has been changed by DirkjanOchtman. The comment on this change is: Add db/_changes and db/_view_cleanup.. http://wiki.apache.org/couchdb/API_Cheatsheet?action=diff&rev1=10&rev2=11 -------------------------------------------------- ||/'''db'''||Creation||PUT /'''db'''||Database creation|||| ||/'''db'''||Deletion||DELETE /'''db'''||Database deletion|||| ||/'''db'''||Info||GET /'''db'''||Database information|||| + ||/'''db'''||Change feed||GET /'''db'''/_changes||Feed of changes in the database|||| ||/'''db'''/_compact||Compaction||POST /'''db'''/_compact||Data compaction|||| ||/'''db'''/_bulk_docs||Bulk document update||POST /'''db'''/_bulk_docs [{"foo": "bar"}]||Update many documents at once|||| - ||/'''db'''/_temp_view||Temporary view||POST /'''db'''/_temp_View {'''view-code'''}||Run an ad-hoc view|||| + ||/'''db'''/_temp_view||Temporary view||POST /'''db'''/_temp_view {'''view-code'''}||Run an ad-hoc view|||| + ||/'''db'''/_view_cleanup||Cleanup view data||POST /'''db'''/_view_cleanup||Cleanup old view data (see [[Compaction]])|||| ||/'''db'''/_design/'''design-doc'''/_view/'''view'''||View||GET /'''db'''/_design/'''design-doc'''/_view/'''view'''||View query (see [[HTTP_view_API]])||(in 0.9.x, this was /'''db'''/_view/'''design-doc'''/'''view''')|| + + See [[HTTP_database_API]] for more information. = Documents level =
