A Basic Full Text Search Server in Erlang
From the post:
This post explains how to build a basic full text search server in Erlang. The server has the following features:
- indexing
- stemming
- ranking
- faceting
- asynchronous search results
- web frontend using websockets
Familiarity with the OTP design principles is recommended.
Looks like a good way to become familiar with Erlang and text search issues.