Code Monkey home page Code Monkey logo

Comments (2)

JohnEmhoff avatar JohnEmhoff commented on September 22, 2024

Based on my limited lapis experience, I'd avoid the cqueues backend. I similarly didn't see any information about handling static files so I implemented something myself. Then I noticed that making http requests would always fail with what looked like an internal event loop error. And on top of all that, after serving a few hundred requests I noticed response times would climb up to 400-500ms. I never figured out what it was; at that point I just switched to nginx and all these problems went away.

from lapis.

leafo avatar leafo commented on September 22, 2024

The cqueues server only supports handling requests through the application module you provide. There are no built-in
webserver "fundamentals" for things like efficient static asset hosting. In those cases, I would still recommend using
something like Nginx with a reverse proxy to handle static assets, as it will help prevent blocking the app server for
basic I/O that can be offloaded to a proxying server.

If performance is no issue and load is minimal (say an internal tool only you use), then you can load the file, set the
content type, and return it as a string within your lapis application handler. (Just want to iterate again, there is no
async I/O support here so it will hurt throughput)

(As an aside, I only personally use the cqueues server for internal tools that aren't publicly facing. I would say it's not as well tested and robust as the openresty mode. If you have a publicly facing server I would recommend setting up openresty)

from lapis.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.