I have a use case where I need to process huge excel file in a fraction of second which was not possible. Hence, I wish to store the selected information from the excel file in memory so that my application can read it from memory instead of loading excel file every time. By the way, I am using groovy for developing the application. My question is as follows:
- What is in-memory data structure? How can I use in groovy?
- What happens when multiple processes running in different nodes want to access the in-memory data structure?
- Any pointer/link will be very much helpful