I created an app using lucene. The server winded up throwing out of memory errors because I was new'in up an IndexSeacher for every search in the app. The garbage collector couldn't keep up.
I just got done implementing a singleton approach and now there are multiple indexes being created.

Any clue why this is happening? IndexWriter is what I am keeping static. I get IndexSearchers from it.