LEAR是一个以惊人效率提供静态资源的简单HTTP服务器

LEAR是一个以惊人效率提供静态资源的简单HTTP服务器

C/C++ HTTP服务器

访问GitHub主页

共165Star

详细介绍

LEAR - Linux Engine for Asset Retrieval

Build Status

Description

LEAR is a simple HTTP server designed to be as simple and fast as possible to achieve one task: serve static resources with amazing efficiency. Currently the project is in its early stage, but is gaining momentum and features.

Architecture

While being small and lightweight, LEAR is as concurrent and non-blocking as possible. It also uses state-of-the-art technologies and solutions to achieve its task: serve your assets rapidly. It features:

  • Multiprocess architecture of traffic handler, using Linux's >3.9 SO_REUSEPORT
  • Epoll queue for each worker
  • Fully non-blocking architecture of network IO with dynamically allocated read and write buffers
  • Lots of customization through user-friendly YAML properties file

Features

  • LEAR accomplishes its task by implementing GET, HEAD, and OPTIONS methods of HTTP/1.1
  • Its non-blocking nature and concurrence-by-design makes responses incredibly fast and processing very efficient
  • Server implements the most common response status codes and offers response body customization (eg. custom 404 error pages for error verbosity and SPA routers)
  • Server parses headers properly and returns Content-Length with any request
  • Requested resources are stored as forever-lasting cache in fast, mmap, shared memory. So, LEAR processes sharing same kernel will have fast access to these resources without unneeded memory reallocations
  • Custom string format and lack of standard C null-terminated string makes server safer and prone to memory retrieval attacks

Installation

  • Prerequisites: CMake, GCC, libyaml

  • Installation

    $ git clone https://github.com/Glorf/lear.git
    $ cd lear
    $ cmake .
    $ make install
    $ cd bin
    # now modify httpd.yaml to suit your needs
    $ ./lear
    

Customization

httpd.yaml offers you all the options currently available - there are no console switches. I believe that at this moment these settings are self-explanatory. We'll do full configs rewrite soon, config documentation is planned to appear afterwards.

TODO

If you like this project, feel free to contribute, fork and send PRs! Current, non-finished list of feature requests is available below. Remember to keep straight KISS rule - LEAR is never going to be RFC-complete as it's designed just to serve GET responses as fast as possible.

  • Finish OPTIONS implementation
  • Add TLS (OpenSSL, possible to disable at compile-time)
  • Implement gzip response packaging
  • Support HTTP/2.0 requests
  • Implement thread pools for long tasks (see nginx ones)
  • Make it able to munmap cache unused for long time
  • Finish socket dropping implementation
  • Add automated tests

License

LEAR is distributed for free as a source code, under permissive MIT license

Benchmark

As development is in early stage, this benchmark is just a performance profiling tool for me, and maybe significant information for people who like this project. It will be updated recently when any performance-related changes happen. Logging is currently disabled in LEAR while benchmarking. Also, please, do not believe these benchmarks. It's just the result of some code run on my laptop, running default, non-tuned nginx, you know. If you'll have any results to share, please, PR to this readme!

ApacheBench 2.3 results

Method Keep-alive? File size [B] Number of requests Concurrency level LEAR master [rps] NGINX 1.5.15 [rps]
GET Yes 865 100000 100 69554.60 47859.80
GET Yes 865 100000 1 19610.20 16483.20
GET Yes 2229306 10000 100 760.80 1821.60
GET Yes 2229306 10000 1 781.60 1508.20