hello I want to use stanford parser wuth threads but I dont know how to do that with thread pool. I want that all threads will do this:
LexicalizedParser.apply(Object in)
but I dont want to create all the time new object of LexicalizedParser because it will load lp = new LexicalizedParser("englishPCFG.ser.gz"); and it will take 2 sec for each obj. what can I do?
thanks!