Entries from 2009-07-31 to 1 day

lambda wiki 更新

長らく放置していた lambda wiki のコードを修正して最新版でうごくようにした。 #!/Users/taro/mosh/mosh (import (rnrs) (srfi :39) (lambda wiki)) (parameterize ([wiki-data-direcoty "wikidata"] [wiki-top-url "http://localhost:8001/wiki"] [spam-b…

Erlang の Memcached クライアント Merle

http://github.com/joewilliams/merle/tree/master を入れた。 注意点は 2 つ。 etap が必要 http://github.com/ngerakines/etap/ make test がメンテナンスされていない疑惑 テストの start_link を connect に、get を getkey にすると良い term_to_binary…

メモ:高速な gen_server 実装?

merle uses LShift's gen_server2 module/behavior for faster message queues. http://hg.rabbitmq.com/rabbitmq-server/file/b95f2fd4e3f6/src/gen_server2.erl 要調査。

Erlang Common Test メモ

今まで適当に使ってきたがマニュアルを読み返す。http://erlang.org/doc/apps/common_test/part_frame.html テストケースの特別な戻り値 {skip,Reason} スキップ {comment,Comment} ログにコメント {save_config,Config} 次のケースに Config 渡す 失敗と認…

Erlang Common Test の Configfile

{hoge, hogeValue} は parse error 。 {hoge, hogeValue}. が正解。はまった。