Replies: 1 comment
-
The reason for this is probably that no-one ever felt that this needs to be changed. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm curious about the JdbcStore logic to store the incoming_seqnum and outgoing_seqnum in the same record of the session table.
quickfixj/quickfixj-core/src/main/java/quickfix/JdbcStore.java
Lines 117 to 118 in 50d0046
Since both the incoming and outgoing processes are trying to update the same record, this approach seems to induce a potential race condition and low throughput.
In contrast, FireStore keeps these sequences in separate files.
Is there a specific reason why JdbcStore does not follow a similar approach by keeping the two sequences in separate records?
Are there any advantages to the current logic that I am not aware of?
Or do you think there is no performance difference?
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions