开发者

i need some directions in comparing values from different sources using python

I need to compare values that i have by executing wmi co开发者_运维技巧mmands(using python) and values from inside a db.. is it best to compare them without storing in separate files or is storing and then comparing is the only possible way?

can someone pls direct me in the right way.. also, where should i look for, for getting more knowledge regarding this?


If in doubt, go for the simplest solution. In this case, compare them in memory.

If you want to be ultra-reliable (i.e. survive after crashes of your application / power outage) or cache values for long times (i.e. it's a requirement to continue working even when the database is down), you may consider files. Be warned though - anything but an extremely careful implementation (you should have lots of try..except..finallys and at least one call to flock and fsync, storing in files tends to be less reliable. So unless you're interested in consistency research and willing to put up a few weeks, go for a simple Python comparison.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜