Juan Calderon-Perez
Juan Calderon-Perez
> It's a pity if this project beed abandoned, i think it is the best free microVMs manager... Sadly it was
@MeRahulAhire Seems like the project was abandoned :-/
The main problem is that all the dependencies are super outdated! https://github.com/slok/sloth/blob/main/go.mod
👍 for adding this, logrus is also super slow
It's also using an extremely old Redis image which hasnt been updated in over a year
@xyproto I'm one of the maintainers for @GoFiber which is based on fasthttp. Looking at the examples I could try using your library with the net/http to fasthttp adaptor. If...
@xyproto The problem with adaptor is that it adds overhead. So if you are checking for `auth` in all your handlers, they will all get slower.
Another thing, your examples folder is part of `permissions2`. This makes it so that anyone using module has to install a lot of dependencies. https://github.com/xyproto/permissions2/blob/main/v2/go.mod#L6 So even if i have...
@xyproto Yes, the best way is to have a native fasthttp middleware. Adaptor while great it has convert/adapt each net/http to a fasthttp ctx. An excellent examples for using adaptor:...
> I gave you full access to this repository, btw, in case you have a good plan for adding support for fasthttp and want to add it. I would have...