I'm using the ConfigParser to read the configuration information stored in a file. I'm able to read the content and use it across other modules in the project. I'm not sure if the configuration file is read every time I call config.get(parameters). How can I make sure that the configuration information is read only once and rest of the time its read from the cache.
Asked
Active
Viewed 820 times
2 Answers
2
I would try assigning the configuration to a variable.
configVariable = config.get(parameters)
Then you can pass the configuration variable to other modules as necessary.

Abhijeet Kasurde
- 3,937
- 1
- 24
- 33

Owen Pierce
- 753
- 2
- 10
- 25