I have a config file abc.ini with trivial fields
[SET_1]
a=1
b=2
c=3
[SET_2]
d=4
e=5
Now, in the script(python) I can do 2 things:
- Access the file abc.ini once and save all config in a data structure
- Access the each field where I need them as configObj[SET_1][a] etc
Which of these is more efficient and why.