In my app, I want to have a background worker that just looks at the memos table in the database and sees if any new memos have been sent to the current logged in user. If there is, it's going to alert the user that a new memo has arrived.
Is it ok to use the default PersistenceManager for this or should I create a new PersistenceManager for the background worker? There will never be any relationship between them or need to share data between them.
the sole purpose of the thread is just to monitors memos being inserted into the Memo table.
Bill