Go to file
Joris Vink 4922171d96 Change net_send_queue() in preparation for improving send performance.
No longer takes callbacks, flags, or *out arguments.

Update rest of the code that called these callbacks whenever sending
was completed, instead call them right away now.
2013-10-25 11:10:03 +02:00
docs add scaling documentation 2013-10-14 15:03:58 +02:00
includes Change net_send_queue() in preparation for improving send performance. 2013-10-25 11:10:03 +02:00
modules Make kore_worker_acceptlock_release() available to loaded modules. 2013-10-24 09:05:46 +02:00
src Change net_send_queue() in preparation for improving send performance. 2013-10-25 11:10:03 +02:00
LICENSE properly mention what license kore is 2013-06-24 12:05:22 +02:00
Makefile Add osx to makefile options. 2013-07-28 20:02:01 +02:00
README s/support/supported 2013-07-28 19:25:46 +02:00

README

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, ...).

Kore provides you with a set of API functions you can use to build your site
which is then loaded into the webserver as a loadable C module. Because of
this pages are mapped to functions that are directly called from the worker
processes allowing for the potential of great speed. 

As little overhead as possible.

Features
- Supports SNI
- 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
- Event driven architecture and worker processes for throughput
- Modules can be reloaded on-the-fly even while serving content

License
- Kore is licensed under the ISC license.

Platforms supported
- Linux
- OpenBSD
- FreeBSD
- OSX

Right now Kore development is a moving process, so expect bugs.
If you run into said bugs please contact me at joris@coders.se.

More information can be found on https://kore.io/