2

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.

2 Answers2

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
1

The default implementation of the ConfigParser class reads its data only once.

tobidope
  • 560
  • 3
  • 9