kolos

Results 5 comments of kolos

Feel free to continue, I'm only using the methods needed for AsyncWebServer's serveStatic method; file upload and serve. It's tested on CB2S and WB2S.

Create a libretiny platformio project, it will do the definitions for those constants. For example, here is my ```platformio.ini``` file: ```ini ; PlatformIO Project Configuration File ; ; Build options:...

I'm using ESPAsyncWebserver like this: ```cpp #include #include "LittleFS.h" AsyncWebServer server(80); void handleUpload(AsyncWebServerRequest *request, String filename, size_t index, uint8_t *data, size_t len, bool final) { if (!index) { request->_tempFile =...

Running 'php artisan route:cache' adds about 300ms to the cold start (tested on x64 / 1024M)

Well, if you know that you should (and can) run route:cache before deploying, it has no effect for you. Otherwise, it’s done automatically, with the benefit of faster responses. I...