|
Hello all I am wondering what the best way is to handle additional functionalities with the router. Is it better to have:
It's easier to organise code by splitting features into separate plugins but I wonder if there is a performance impact with having a lot of small plugins vs. a single plugin that does everything? |
Answered by
bnjjj
Dec 19, 2022
Replies: 1 comment
|
Having several plugins instead of just 1 won't really have a significant impact on performance. Just keep in mind to not have a plugin dependent of another one. Also there is no way to force ordering between plugins calls that's why it's better to not have dependencies between different plugins. |
0 replies
Answer selected by
flou
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Having several plugins instead of just 1 won't really have a significant impact on performance. Just keep in mind to not have a plugin dependent of another one. Also there is no way to force ordering between plugins calls that's why it's better to not have dependencies between different plugins.