I need to store a large numbers of functions rules in Python (around 100000 ), to be used after....
def rule1(x,y) :...
def rule2(x,y): ...
What is the best way to store, manage those function rules instance into Python structure ?
What about using Numpy dtype=np.object array ? (list are bad when they become too large...)
Main goal is to access in the fastest and minimum memory footprint when storing in memory.
Thanks