|
|
|
|
|
by ww520
5255 days ago
|
|
You might not need ACID during the recording of each charging transaction; however, without ACID, you won't be able to correctly apply each transaction against your account balance during the reconciliation batch processing. Marking each charging record as charged and updating your account balance must be in one transaction, whether relying on the database transaction support or building your own transactional log. So at the end of the day (yes end of the day processing), ACID is needed. |
|