I'm using Application[""] to store a few lists of very small size. I would ideally set it at only place.. Application_Start
... but is there a chance the data might get lost in middle and I might have to store these lists back in Application inside places other than Application_Start? If yes, should I be prepared for any kind of race condition?
Let me know if any other concerns you have about using application_Data (like scalability??)... but the size itself of the data I will be storing in it will stay very small.