Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

eskiesirius's avatar

eskiesirius wrote a reply+100 XP

17h ago

Database Backup Rule

Thank you for this reference

eskiesirius's avatar

eskiesirius started a new conversation+100 XP

19h ago

Database Backup Rule

Hello! i am currently using dedicated database of Digital Ocean and it has a standby node. My question now is that, what is the best practice for creating backups? Do i still need to dump the file? How about the binlogs? What are the best config for the database?

EDIT: My app is a Payment gateway, we are now handling large amount of money daily

eskiesirius's avatar

eskiesirius wrote a reply+100 XP

1d ago

Database Replication

got it.. thank you!

eskiesirius's avatar

eskiesirius wrote a reply+100 XP

1d ago

Database Replication

thank you for this insight! i am thinking of using the replica when showing metrics or exporting reports

eskiesirius's avatar

eskiesirius started a new conversation+100 XP

1d ago

Database Replication

Hello! i created a fintech app, and right now we have a high traffic(16 reqs/second.. not sure if this is a high traffic already) and now, i am thinking of using a database replication.. by setting the read/write config and 'strict' => true, ... should i not be worried of the integrity of the data? like the delays of the newly added/updated record?

eskiesirius's avatar

eskiesirius wrote a reply+100 XP

1d ago

Increment/Decrement on High Traffic

Sorry for the late reply guys @vincent15000 @imrandevbd @martinbean... so what i did was, i stored it on the cache and create a job that will sync..

eskiesirius's avatar

eskiesirius started a new conversation+100 XP

1w ago

Increment/Decrement on High Traffic

I created a fintech app, right now i am using ->increment/decrement for the balance.. my current problem is that when a certain merchant has lots of traffic, it causes a problem it needs to wait before it updates because of the atomic lock.. I also have a ledger of the wallet transaction but using sum to get the real balance will be very expensive when it has a lot of records.. how do you handle this stuff?