A new CMS written in Go! 1

Posted by avalon Fri, 24 Feb 2012 12:42:00 GMT

On 22/2 Slamet Hendri announced the 1st version of a Content Management System written in Go. Check it out at:

http://gobl.me

Use Go for webservers: Introducing Falcore and Timber 2

Posted by avalon Fri, 03 Feb 2012 10:31:00 GMT

The company ngmoco, and in particular Dave Grijalva and Scott White, have built a new framework for building HTTP-servers by composing handlers into pipelines, inspired by Ruby Rack and nginx. Also tools for logging and performance measuring are built in.

Check it out at: http://ngenuity.ngmoco.com/2012/01/introducing-falcore-and-timber.html

 

WeedFS

Posted by Brian Tue, 27 Dec 2011 23:43:00 GMT

Chris Lu announces WeedFS:

I am excited to announce a new Go project: Weed File System.

http://weed-fs.googlecode.com

Weed-FS is a simple and highly scalable distributed file system to store and retrieve billions of files.

Weed-FS does not support full POSIX file system semantics, but is a key~file mapping. Similar to the word "NoSQL", you can call it as "NoFS".

Weed-FS models after Facebook's Haystack design paper, but simplified.

It runs on common file system, mostly reads with O(1) disk operation.

The volumes on the storage node behaves like a tar file, but readable and writable.

This is for files that are not changed often, for example, pictures, video, audio, etc. And since weedfs has only O(1) disk operation, it's ideal for online websites for quick and concurrent accesses.

Weed-FS is at version 0.1, but usable now. Welcome to use it, report bugs, feature requests, or contribute code directly!