I have to send out massEmails to all users of a website. I want to use a thread pool for each email that is sent out. Currently I have set the values to :
<property name="corePoolSize" value="500" />
<property name="maxPoolSize" value="1000" />
What is the difference between the two and will it scale. Currently I have approx. 10000 users.


