我有一个C++程序,从内存进程读取游戏数据。例如,
int points = 0;
while (1) {
points = ReadProcessMemory(..) // points will be read from game's memory
Sleep(100) // Don't read too often
}
我想同步数据,以便它显示这一点(不一定是实时的,但足够快)在我的网站上。所以我有选择
在while循环中,一直将POST请求发送到服务器API以保存到数据库。
在while循环中,检查是否有更改,如果检测到,则发送POST (减少服务器流量