Hi all, new to Param, and loving it so far. Have a question though. I’d like to build a dashboard with approximately the same complexity as Blender. Hundreds of widgets, and my question is, how many Params can I put in an app, before it starts misbehaving? Could I do… a thousand? Ten thousand? Thanks for your input, wanted to ask before jumping in.
I don’t think a class should have over a hundred. Can you elaborate why you would need thousand or ten thousand params? Are you dynamically creating them? Over 20+ params, I think it’s time for class inheritance / composition structure.
It is a finite element application. It has to scale over 8 orders of magnitude. The operations the user has to perform at each level of resolution are considerably different. Imagine a geometric application like Blender, where a collection of vertices and edges are being rotated, scaled, and so on. The number of operations available to the user in Blender is several hundred. For me, that would be several hundred “per level”. Short story, it’s an enormous application. I’m looking at about a thousand different user operations, and the visualization associated with each operation is different.