public
Description: This is an experiment for a CouchDB view server implemented in the Io language just for the fun of it.
Homepage:
Clone URL: git://github.com/nrk/couchdb-io-viewserver.git
name age message
file README Sun Dec 14 04:23:08 -0800 2008 First commit. The view server is barely working... [nrk]
file TODO Sun Dec 14 04:23:08 -0800 2008 First commit. The view server is barely working... [nrk]
file viewserver.io Sun Dec 14 10:35:04 -0800 2008 Small fix: strings are sorrounded by double quotes [nrk]
README
couchdb-io-viewserver
======================

A CouchDB view server that allows writing view functions in Io.

This is just a little experiment to figure out how the Io programming language 
actually works. The view server protocol implementation is nearly complete, 
there are still a few parts broken though. Be kind, I'm still new to Io :)


The Io programming language
===========================

Io is a small, prototype-based programming language. The ideas in Io are mostly 
inspired by Smalltalk (all values are objects, all messages are dynamic), Self 
(prototype-based), NewtonScript (differential inheritance), Act1 (actors and 
futures for concurrency), LISP (code is a runtime inspectable/modifiable tree) 
and Lua (small, embeddable).

(Quoted from http://www.iolanguage.com/)