|
|
|
|
|
by sitkack
1111 days ago
|
|
Database config should be two connection strings, 1 for the admin user that creates the tables and anther for the queue user. Everything else should be stored in the database itself. Each queue should be in its own set of tables. Large blobs may or may not be referenced to an external file. Shouldn't a message send be worst case a CAS. It really seems like all the work around garbage collection would have some use for in-memory high speed queues. Are you familiar with the LMAX Disruptor? Is is a Java based cross thread messaging library used for day trading applications. https://lmax-exchange.github.io/disruptor/ |
|