goirc/server
Alex Bramley 762ba1e599 Type inference proves too costly for ragel-based config...
On the one hand, the complex ragel solution is explicit about the config syntax
and requires little heavy lifting on the Go side, but the ragel definition is
overly complex, too rigid and produces bloody huge binary output. On the other
the simple ragel solution can provide pretty much the same syntax with some
type conversion, but the reflection magic to pack this into objects correctly
is done much better by the JSON module. Forcing parsing of everything tostrings
results in lots of nasty if/case statements in the Go code.

JSON has another benefit in that the config serialisation is two-way, allowing
for web or IRC based configuration. It's a pity it's a bugger to edit by hand.
2011-02-22 21:26:48 +00:00
..
config Type inference proves too costly for ragel-based config... 2011-02-22 21:26:48 +00:00
Makefile Initial commit of vague hackery for a go IRCd. 2010-11-21 20:07:31 +00:00
connmux.go Initial commit of vague hackery for a go IRCd. 2010-11-21 20:07:31 +00:00
handlers.go Initial commit of vague hackery for a go IRCd. 2010-11-21 20:07:31 +00:00
netmap.go Initial commit of vague hackery for a go IRCd. 2010-11-21 20:07:31 +00:00
network.go Initial commit of vague hackery for a go IRCd. 2010-11-21 20:07:31 +00:00
nickchan.go Initial commit of vague hackery for a go IRCd. 2010-11-21 20:07:31 +00:00
node.go Initial commit of vague hackery for a go IRCd. 2010-11-21 20:07:31 +00:00
parser.go Initial commit of vague hackery for a go IRCd. 2010-11-21 20:07:31 +00:00
server.go Initial commit of vague hackery for a go IRCd. 2010-11-21 20:07:31 +00:00