我的申请管理着它的所有数据,该数据库由一些校对。
现在,我一直在保持我所有的亚洲开发银行对数据库本身的同步呼吁。
The reason I want to do this is that occasionally I want to refresh the table by grabbing the most recent version from a server and reconstructing the table from stratch. To save time I m actually making a second table and then replacing the original when I m done (locking it out with a synchronized while I m doing this).
The problem is either I occasionally have my SQL calls stall for a long while (due to the synchronous locks) or I get an error when a SQL call tries to run itself in the brief period when my one table is getting copied over.
在我更新时,我是否要从其他行动中打下我的数据库,但让A、B、C、etc同时运行?
Cheers!