CherryPy VS may

Compare CherryPy vs may and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
CherryPy may
2 17
1,783 1,708
1.1% -
7.0 8.2
6 days ago 18 days ago
Python Rust
Freely Distributable Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

CherryPy

Posts with mentions or reviews of CherryPy. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-22.

may

Posts with mentions or reviews of may. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-25.
  • Why choose async/await over threads?
    11 projects | news.ycombinator.com | 25 Mar 2024
    https://github.com/Xudong-Huang/may

    The project has some serious restrictions and unsound footguns (e.g. around TLS), but otherwise it's usable enough. There are also a number of C/C++ libraries, but I can not comment on those.

  • Asynchronous Clean-Up (in Rust)
    5 projects | news.ycombinator.com | 25 Feb 2024
    > e.g. Linux mutexes

    You don't want to use blocking mutexes anyway with async.

    > or Rust's Rc

    This is only half true. The danger is that two `Rc` that point to the same data are in different threads. But it should be safe to move all of them at once from one thread to another, which is exactly the case if all the `Rc`s involved live inside a `Future`. The problem is that this is a non-local property that's hard to encode in the type system.

    > By the way, if you wish to test uncolored async in Rust, you can find an implementation here: https://github.com/Xudong-Huang/may .

    FYI that's known to be unsound due to thread locals. And more generally it doesn't seem to give much attention to safety (see for example how it allowed unsound scoped tasks, or the fact it allows doing unsafe operations in some of its macros due to wrong scoping of `unsafe` blocks).

  • What's the Benefit/Allure of Async/Await vs. CSP/Green Threads (and Other Concurrency Models)?
    6 projects | /r/rust | 9 Dec 2023
    It seems that rust removed native green threads as against it's philosophy: https://stackoverflow.com/questions/29428318/why-did-rust-remove-the-green-threading-model-whats-the-disadvantage#29430403 but there are good CSP libraries e.g. https://github.com/Xudong-Huang/may and yet people really like e.g. Tokio for Async/Await (although it also has greenthreads!) What am I missing?
  • Async Rust Is A Bad Language
    11 projects | news.ycombinator.com | 8 Sep 2023
    Can you admit that you failed in making it a pleasant experience to write async, especially for library authors? I don’t think it’s too late to admit failure and implement something like May https://github.com/Xudong-Huang/may
  • How Much Memory Do You Need to Run 1 Million Concurrent Tasks?
    2 projects | /r/programming | 21 May 2023
    Your benchmark is comparing apples to oranges, you're benchmarking different things. If you wanted to compare a Rust solution to something like what Go does, you would need to use something like this library.
  • Can this new algorithm of Kotlin async be applied to Rust?
    1 project | /r/rust | 14 Feb 2023
    Yep. This is the best coroutine library right now https://github.com/Xudong-Huang/may
  • async fn calls can lead to surprising performance problems if they are nested too deeply
    5 projects | /r/rust | 26 Jan 2023
    I am still intrigued by the stackful coroutine library, May https://github.com/Xudong-Huang/may. I would like to see how far this library can push the boundaries of being a higher level alternative to async
  • Goroutine equivalent
    1 project | /r/rust | 27 Dec 2022
    There is also "may" which attempts to be a Rust version of goroutines. I have not used it though, so can't comment on anything further about it.
  • Virtual Threads in Rust?
    3 projects | /r/rust | 30 Sep 2022
    This library https://github.com/Xudong-Huang/may implement Stackful Coroutines in Rust which I believe is pretty close to what you're asking about. I believe it's a reasonably complete implementation, but it doesn't have much traction because most of the Rust ecosystem is using either async/await or native threads.
  • Working with Strings in Rust
    1 project | news.ycombinator.com | 23 Sep 2022
    I've never worked with C# so I need to look into that.

    The one saving grace with Rust is if everyone decides to say "screw async" and just builds synchronous APIs, then we use something like [May](https://github.com/Xudong-Huang/may) for green threading.

What are some alternatives?

When comparing CherryPy and may you can also consider the following projects:

Flask - The Python micro framework for building web applications.

tokio - A runtime for writing reliable asynchronous applications with Rust. Provides I/O, networking, scheduling, timers, ...

fastapi - FastAPI framework, high performance, easy to learn, fast to code, ready for production

cached - Rust cache structures and easy function memoization

Django - The Web framework for perfectionists with deadlines.

ocaml - The core OCaml system: compilers, runtime system, base libraries

Bottle - bottle.py is a fast and simple micro-framework for python web-applications.

go - The Go programming language

AIOHTTP - Asynchronous HTTP client/server framework for asyncio and Python

actix-web - Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.

Tornado - Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.

Puma - A Ruby/Rack web server built for parallelism