13 Aug 2011, 6:46pm
Work:
by

1 comment

  • Node.js Presentations

    I gave two Node.js-related talks within the past week.

    The first one was titled “From Java To Node.js”, at Shine Technologies‘ developers meeting on August 5th, 2011.

    The second one was titled “JavaScript Everywhere From Nose To Tail”, at Melbourne JavaScript usergroup on August 10th, 2011, with Carl Husselbee from Sensis.

    Happy with the positive feedback from the audience of both talks, thanks folks, much appreciated!

    Update (08/09/2011):

    And here’s the video from the second talk…

    JavaScript Everywhere – From Nose To Tail from Benjamin Pearson on Vimeo.

    3 Jul 2011, 6:37pm
    Projects:
    by

    leave a comment

  • Couchtato Introduction

    Last Thursday I put up a post at Shine Technologies blog titled Couchtato – A CouchDB Document Utility Tool Written In Node.js. It’s a short introduction to Couchtato, a little hobby project I worked on over several evenings and lunch breaks.

    Do check it out if you are a CouchDB and NodeJS user.

    26 May 2011, 12:26pm
    Work:
    by

    leave a comment

  • Running CouchDB-Lucene On Tomcat

    As of the time of writing, CouchDB-Lucene (v0.6.0) distribution was bundled with Jetty WebServer and runnable from command line. But if you dive a little bit into the code, you’ll find that the run script basically executes com.github.rnewson.couchdb.lucene.Main, which in turn (1) reads the couchdb-lucene.ini config, (2) creates a Jetty Server, and (3) sets up com.github.rnewson.couchdb.lucene.LuceneServlet on the server.

    At work, we had to use Tomcat due to SOE reason, so I spent a bit of time trying to get CouchDB-Lucene running on Tomcat and get it deployed as a .war file. Here’s how we did it, please note that this is the tedious way of doing it, all because I had to integrate CouchDB-Lucene into an existing web app. There’s an easier way to build a .war file mentioned at the end of this post.

    1. Unpack couchdb-lucene-<version>.zip .
    2. Create a standard web app directory structure with WEB-INF dir.
    3. Configure LuceneServlet in your-app/WEB-INF/web.xml .
      <web-app>
      ...
      <servlet>
      <servlet-name>lucene</servlet-name>
      <servlet-class>com.github.rnewson.couchdb.lucene.LuceneServlet</servlet-class>
      </servlet>
      ...
      <servlet-mapping>
      <servlet-name>lucene</servlet-name>
      <url-pattern>/</url-pattern>
      </servlet-mapping>
      ...
      </web-app>
    4. Copy all jars from couchdb-lucene-<version>/lib/ to your-app/WEB-INF/lib/ . The jetty-*.jar files can be excluded.
    5. Copy couchdb-lucene-<version>/conf/couchdb-lucene.ini and couchdb-lucene-<version>/conf/log4j.xml to your-app/WEB-INF/classes/ .
    6. Deploy your-app on Tomcat.
    7. Configure the CouchDB external process hook script with the host name and port number where Tomcat is listening on.

    There was one catch though, LuceneServlet did not have any no-argument constructor for the web.xml configuration, so that’s one of the changes I had to make. The other change was some file reorganisation so that you can use mvn war:war to generate a target/couchdb-lucene-<version>.war file. Too easy!

    I’ll submit a pull request to master later, but in the mean time you can clone my fork to get the patched LuceneServlet and to easily generate the .war file.

    Update (27/05/2011): It’s now part of couchdb-lucene master as of 0081272a30dc679effc1cf1298e365b953f568a5, should be included in v0.7.0 .

    10 Sep 2010, 12:42am
    Projects:
    by

    leave a comment

  • CouchDB Upgrade From 0.11.0 To 1.0.1

    This post also serves as a note to self when I do another upgrade in the future.

    It’s still not clear to me of what’s the best practice for upgrading a CouchDB installation. From the mailing list, some people suggested backing up the config and database files, uninstalling the old version, then installing the new version. But, really, what’s involved in uninstalling a CouchDB installation? manually deleting the files from the old installation? I had the same confusion when I tried to do the upgrade on OS X, once from a compile from source, and another from a CouchDBX installation.

    So instead of ‘the best practice’, I’ll just share what worked for me. I simply installed the new version using the same way as when I installed the old version, i.e. compile from source, and the files from 1.0.1 installation overwrote the files from 0.11.0 . Here’s what I did:

    1. I searched for CouchDB config and database files, and found them in /usr/local/etc/couchdb/local.ini and /usr/local/var/lib/couchdb/mydatabase.couch . I then backed up those files.
    2. The fact that I found those files under /usr/local indicated that I must’ve used –prefix=/usr/local when I installed 0.11.0 .
    3. I downloaded the source code of CouchDB 1.0.1, then ran the usual:
      ./configure --prefix=/usr/local
      make
      sudo make install
    4. Voila, CouchDB 1.0.1 was installed, the config and database files were still intact, everything worked fine.

    7 Aug 2010, 7:14pm
    Projects:
    by

    leave a comment

  • Node.js And CouchDB Installation On Ubuntu

    Just a quick gist of the script I’ve been using to install NodeJS and CouchDB on several Ubuntu boxes.

     

    Recent Posts

    Recent Comments

    • Cliffano Subagio: Good to hear about your opportunity to visit Japan, I’m sure you will have a great...
    • Kayla: I’m going to Japan for two week this summer. Our sister city is Tsubame, Japan and my school has an...
    • poseidonfu: thanks,Very effective
    • anonymous: I really enjoyed both the last lecture and the book. I don’t think that theres anyone that I look up...
    • dioni: The thing I hate about HK is how people shove and push in the queue. Can’t they be civilized?!! I kept...

    Most Commented Posts

    Linkroll