From 1f8693064d20b452b3b4b3f1b64060d3017eaa5f Mon Sep 17 00:00:00 2001 From: Koala Yeung Date: Sat, 16 Jan 2016 06:19:15 +0800 Subject: [PATCH] Initial commit --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..e5a5a00 --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +gofast +====== + +*gofast* is a [FastCGI](http://www.fastcgi.com/devkit/doc/fcgi-spec.html) +client written purely in go. + + +Why? +---- +Many popular languages (e.g. Python, PHP, Ruby) has FastCGI server +implementations. Developer used to proxy Nginx or Apache requests +to these FastCGI backend. What if go developers can use these +languages through the same protocol? + +Some quick and dirty RPC could be handy with the help of all the +other languages support FastCGI. The only limit is your imagination. + +Also, this is fun to do :-) +