kore/README

27 lines
949 B
Plaintext
Raw Normal View History

2013-05-01 21:36:00 +02:00
Hi.
Kore is a fast webserver that facilitates creating dynamic websites in
the C programming language. It takes away the bottleneck of constantly
loading items from disk or executing non compiled code (PHP, Perl, ...).
2013-05-01 21:36:00 +02:00
With a site loaded as a module in memory the page callbacks are directly called from the worker proceses and requests can be handled incredibly fast.
2013-05-17 08:46:45 +02:00
No overhead.
2013-05-01 21:36:00 +02:00
Features
2013-06-05 16:42:39 +02:00
- Supports SPDY/3
- Supports HTTP/1.1
- Secure by default
- SSL connections only
- Virtual host support
- Easy to use configuration
- Loads your site as a precompiled C module
- Linux epoll(7) and worker processes for throughput
- Modules can be reloaded on-the-fly even while serving content
2013-06-05 14:10:29 +02:00
Right now Kore development is a moving process, so expect bugs.
If you run into said bugs please contact me at patches@coders.se.
2013-06-05 14:10:29 +02:00
More information can be found on https://kore.io/
2013-06-05 16:57:24 +02:00
The master repository can be found @ http://git.coders.se/cgit/index.cgi/kore/