All Projects → socketry → Falcon

socketry / Falcon

A high-performance web server for Ruby, supporting HTTP/1, HTTP/2 and TLS.

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Falcon

Rubico
[a]synchronous functional programming
Stars: ✭ 133 (-93.54%)
Mutual labels:  async, asynchronous, concurrent
Tascalate Concurrent
Implementation of blocking (IO-Bound) cancellable java.util.concurrent.CompletionStage and related extensions to java.util.concurrent.ExecutorService-s
Stars: ✭ 144 (-93%)
Mutual labels:  async, asynchronous, concurrent
Chili
Chili: HTTP Served Hot
Stars: ✭ 7 (-99.66%)
Mutual labels:  async, http-server, asynchronous
Mioco
[no longer maintained] Scalable, coroutine-based, fibers/green-threads for Rust. (aka MIO COroutines).
Stars: ✭ 125 (-93.93%)
Mutual labels:  async, asynchronous
Drone
CLI utility for Drone, an Embedded Operating System.
Stars: ✭ 114 (-94.46%)
Mutual labels:  async, asynchronous
Hummingbird
Lightweight, flexible HTTP server framework written in Swift
Stars: ✭ 114 (-94.46%)
Mutual labels:  server, http-server
Watsonwebserver
Watson is the fastest, easiest way to build scalable RESTful web servers and services in C#.
Stars: ✭ 125 (-93.93%)
Mutual labels:  server, http-server
Kitchen Async
A Promise library for ClojureScript, or a poor man's core.async
Stars: ✭ 128 (-93.78%)
Mutual labels:  async, asynchronous
Spotify.py
🌐 API wrapper for Spotify 🎶
Stars: ✭ 131 (-93.63%)
Mutual labels:  async, asynchronous
Pure Http
✨ The simple web framework for Node.js with zero dependencies.
Stars: ✭ 139 (-93.25%)
Mutual labels:  server, http-server
Qtpromise
Promises/A+ implementation for Qt/C++
Stars: ✭ 137 (-93.34%)
Mutual labels:  asynchronous, concurrent
Purescript Httpure
A web framework written in PureScript.
Stars: ✭ 112 (-94.56%)
Mutual labels:  server, http-server
Async Backplane
Simple, Erlang-inspired fault-tolerance framework for Rust Futures.
Stars: ✭ 113 (-94.51%)
Mutual labels:  async, asynchronous
Socket
Non-blocking socket and TLS functionality for PHP based on Amp.
Stars: ✭ 122 (-94.07%)
Mutual labels:  async, server
Aiormq
Pure python AMQP 0.9.1 asynchronous client library
Stars: ✭ 112 (-94.56%)
Mutual labels:  async, asynchronous
Ws Machine
WS-Machine is a websocket finite state machine for client websocket connections (Go)
Stars: ✭ 110 (-94.66%)
Mutual labels:  async, asynchronous
Kubernetes asyncio
Python asynchronous client library for Kubernetes http://kubernetes.io/
Stars: ✭ 147 (-92.86%)
Mutual labels:  async, asynchronous
Restbed
Corvusoft's Restbed framework brings asynchronous RESTful functionality to C++14 applications.
Stars: ✭ 1,551 (-24.64%)
Mutual labels:  http-server, asynchronous
Mofuw
mofuw is *MO*re *F*aster, *U*ltra minimal *W*ebserver.
Stars: ✭ 107 (-94.8%)
Mutual labels:  http-server, asynchronous
Aiohttp
Asynchronous HTTP client/server framework for asyncio and Python
Stars: ✭ 11,972 (+481.73%)
Mutual labels:  async, http-server

Falcon

Falcon is a multi-process, multi-fiber rack-compatible HTTP server built on top of async, async-io, async-container and async-http. Each request is executed within a lightweight fiber and can block on up-stream requests without stalling the entire server process. Falcon supports HTTP/1 and HTTP/2 natively.

Development Status

Motivation

Initially, when I developed async, I saw an opportunity to implement async-http: providing both client and server components. After experimenting with these ideas, I decided to build an actual web server for comparing and validating performance primarily out of interest. Falcon grew out of those experiments and permitted the ability to test existing real-world code on top of async.

Once I had something working, I saw an opportunity to simplify my development, testing and production environments, replacing production (Nginx+Passenger) and development (Puma) with Falcon. Not only does this simplify deployment, it helps minimize environment-specific bugs.

My long term vision for Falcon is to make a web application platform which trivializes server deployment. Ideally, a web application can fully describe all it's components: HTTP servers, databases, periodic jobs, background jobs, remote management, etc. Currently, it is not uncommon for all these facets to be handled independently in platform specific ways. This can make it difficult to set up new instances as well as make changes to underlying infrastructure. I hope Falcon can address some of these issues in a platform agnostic way.

As web development is something I'm passionate about, having a server like Falcon is empowering.

Priority Business Support

Falcon can be an important part of your business or project, both improving performance and saving money. As such, priority business support is available to make every project a success. The support agreement will give you:

  • Direct support and assistance via Slack and email.
  • Advance notification of bugs and security issues.
  • Priority consideration of feature requests and bug reports.
  • Better software by funding development and testing.

Please visit Socketry.io to register and subscribe.

Usage

Please see the project documentation or run it locally using bake utopia:project:serve.

Contributing

We welcome contributions to this project.

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Responsible Disclosure

We take the security of our systems seriously, and we value input from the security community. The disclosure of security vulnerabilities helps us ensure the security and privacy of our users. If you believe you've found a security vulnerability in one of our products or platforms please tell us via email.

Websites using Falcon

Websites below are listed in alphabetical order.

You're welcome to file a PR if you want to add your sites here.

License

Released under the MIT license.

Copyright, 2018, by Samuel G. D. Williams.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].