Pismice
Pismice
Other than that is it complete ?
The project is finished and fully usable ?
Ok ty very much for your answers, the ideal way to use your project is just to download the fiber.zig and use it in my other files right ?
Could you improve performance of your http server by spawning a thread for each **handleRequest** ? It seems to me that this server wont be able to accept a big...
Do you have a recommandation on where I could find a "robust" http server written in Zig ?
Would it be even better if put behind nginx or this has nothing to do with performances ?
Either that or when I: ``` { "lukas-reineke/indent-blankline.nvim", main = "ibl", version = "2.20.3", opts = function(_, opts) -- Other blankline configuration here return require("indent-rainbowline").make_opts(opts) end, dependencies = { "TheGLander/indent-rainbowline.nvim",...
Why isnt it that way in the doc ?? https://gorm.io/docs/has_one.html ``` type User struct { gorm.Model CreditCard CreditCard } type CreditCard struct { gorm.Model Number string UserID uint } ```
> Hi, you must use Pointer for `Template` instead of using a value object. for example, use `Template *Workout`. And I still have errors when doing this: ``` type Child...
> You still have errors because: > > You don't have any `foreign key` in the child structure. Add `ParantID unit` to the child structure. Why not in the parent...