What functionality are you missing in the framework? #97
Replies: 6 comments 14 replies
-
I really like the Livewire stuff in Laravel but this is more a package for userland. Furthermore:
|
Beta Was this translation helpful? Give feedback.
-
Rate limiting seems like a good idea. A few things that come to mind are:
Apologies if any of these have already been implemented. |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
Scheduling and async job execution are really great in laravel (https://laravel.com/docs/8.x/scheduling). Would love to see it in confetti. I suggest a queue-worker system for job execution that utilizes goroutines for parallel execution and a worker pool to prevent too many jobs from being executed at the same time. |
Beta Was this translation helpful? Give feedback.
-
How about anonymous validation function, easy to define custom validation rules type VerifyFunc func(value support.Value) error
func (f VerifyFunc) Verify(value support.Value) error {
return f(value)
}
failures := val.Validate(app, content,
val.Verify("some.field", val.VerifyFunc(func(value support.Value) error {
// do awesome validation
return nil
}))) |
Beta Was this translation helpful? Give feedback.
-
Could be better if documentation had "Deployment" block |
Beta Was this translation helpful? Give feedback.
-
What functionality are you missing in the framework? I am now thinking of building Rate Limiting. But what do you need? Functions are fully implemented in one go as much as possible.
Beta Was this translation helpful? Give feedback.
All reactions