active questions tagged consistency - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T05:32:23Z http://stackoverflow.com/feeds/tag/consistency http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1851249/sleep0-consistent-time-keeping-in-code 2 sleep(0)? consistent time keeping in code? acidzombie24 2009-12-05T05:41:56Z 2009-12-05T06:43:51Z <p>Right now i am loading a file then using gettimeofday and tracking the CPU time with tv_usec</p> <p>My results varies, i get 250's to 280s but sometimes 300's or 500's. I wrote usleep and sleep (0) and (1) with no success. The time still varies vastly. I thought sleep(1) (seconds in linux, not the windows Sleep in ms) would have solved it. How can i keep track of time in a more consistent way for testing? Maybe i should wait until i have a much larger test data and more complex code before starting measurements?</p> http://stackoverflow.com/questions/522586/appengine-maintaining-datastore-consistency-when-creating-records 1 AppEngine: Maintaining DataStore Consistency When Creating Records PythonPower 2009-02-06T22:55:04Z 2009-10-09T14:35:16Z <p>I've hit a small dilemma! I have a handler called vote; when it is invoked it sets a user's vote to whatever they have picked. To remember what options they previously picked, I store a VoteRecord options which details what their current vote is set to.</p> <p>Of course, the first time they vote, I have to create the object and store it. But successive votes should just change the value of the existing VoteRecord. But he comes the problem: under some circumstances two VoteRecords can be created. It's rare (only happened once in all 500 votes we've seen so far) but still bad when it does.</p> <p>The issue happens because two separate handlers both do essentially this:</p> <pre><code>query = VoteRecord.all().filter('user =', session.user).filter('poll =', poll) if query.count(1) &gt; 0: vote = query[0] poll.votes[vote.option] -= 1 poll.votes[option] += 1 poll.put() vote.option = option vote.updated = datetime.now() vote.put() else: vote = VoteRecord() vote.user = session.user vote.poll = poll vote.option = option vote.put() poll.votes[option] += 1 poll.put() session.user.votes += 1 session.user.xp += 3 session.user.put() incr('votes') </code></pre> <p>My question is: what is the most effective and fastest way to handle these requests while ensuring that no request is lost and no request creates two VoteRecord objects?</p> http://stackoverflow.com/questions/1539994/in-game-programming-how-can-i-test-whether-a-heuristic-used-is-consistent-or-not 4 In game programming, how can I test whether a heuristic used is consistent or not? eSKay 2009-10-08T19:43:14Z 2009-10-09T09:39:24Z <p>I have thought of some <strong>heuristics</strong> for a big (higher dimensions) tic-tac-toe game. How do I check which of them are actually <strong><em>consistent</em></strong>?</p> <p>What is meant by <strong>consistency</strong> anyways?</p> http://stackoverflow.com/questions/1435188/fast-restart-technique-instead-of-keeping-the-good-state-availability-and-consis 1 Fast restart technique instead of keeping the good state (availability and consistency) Superfilin 2009-09-16T20:08:48Z 2009-09-25T03:56:29Z <p>How often do you solve your problems by restarting a computer, router, program, browser? Or even by reinstalling the operating system or software component?</p> <p>This seems to be a common pattern when there is a suspect that software component does not keep its state in the right way, then you just get the initial state by restarting the component.</p> <p>I've heard that Amazon/Google has a cluster of many-many nodes. And one important property of each node is that it can restart in seconds. So, if one of them fails, then returning it back to initial state is just a matter of restarting it.</p> <p>Are there any languages/frameworks/design patterns out there that leverage this techinque as a first-class citizen?</p> <p><strong>EDIT</strong> The link that describes some principles behind Amazon as well as overall principles of availability and consistency: <a href="http://www.infoq.com/presentations/availability-consistency" rel="nofollow">http://www.infoq.com/presentations/availability-consistency</a></p> http://stackoverflow.com/questions/993160/database-consistency-checking-framework 0 Database consistency checking framework Peter Oehlert 2009-06-14T16:31:58Z 2009-06-14T19:07:21Z <p>I'm looking for a framework to utilize to integrate a number of database consistency checking rules into our system. This should basically be a automated test case runner for our database checks.</p> <p>Requirements:</p> <ul> <li>Easy to write new rules or checks</li> <li>Easy to run all rules, grouping of rule subsets would be a bonus</li> <li>Accurate and simple reporting of rules as they are executed or after execution</li> </ul> <p>I'm about to write something like this myself but I thought that I would see if I could find something else out there first. I googled it but couldn't find anything.</p> <p>Some rule examples:</p> <ul> <li>Ensure that in a child table for each record with [Rank] N, that N is 0 or there is a record with [Rank] N-1. E.g. child records will always have monotonically increasing ranks from 0 to MAX(Rank) for a given parent.</li> <li>Our database uses a global "type/ID" system with a single MasterEntity table that is a header table for every Entity in the system. Each entity type belongs in 1 or more specific Entity tables and each Entity table only allows 1 or more specific types. Check that all entities in the system have correct records in their appropriate entity tables.</li> <li>Ensure that all securable types have an entry in our security descriptor table</li> </ul> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables 19 what is an ideal variable naming convention for loop variables? just mike 2008-09-19T10:55:32Z 2009-04-06T21:48:29Z <p>if you are writing a <em>simple</em> little loop, what <em>should</em> you name the counter?</p> <p><em>provide example loops!</em></p> http://stackoverflow.com/questions/639668/keeping-testing-and-production-server-environments-clean-in-sync-and-consistent 7 Keeping testing and production server environments clean, in sync, and consistent Linus 2009-03-12T17:33:34Z 2009-03-13T15:10:24Z <p>It seems that the company that I work for is always <strong>struggling with our customers’ server environments</strong>.</p> <p>Specifically, we almost always encounter problems with testing servers and production servers, and the fact that they always seem to be configured differently. When we test the applications that we develop, the testing servers behave in one way, and thus we tweak and configure our applications to fit that particular behavior. But when we install the same application on the production servers we observe another behavior that is not consistent with the testing servers, thus rendering our tweaks and configurations useless. The most frustrating part is that this happens all the time and that no one seem to know what to do about it.</p> <p>Of course we have a general idea of why this happens. Every cloned environment starts out the same and works the same the first couple of days, but sooner or later someone reconfigure something in only one of the server environments (be it a database update, an update of a component library, a web file update, or other configurations), thereby leading to discrepancy. And as time goes by, more and more discrepancies builds up. But the question is: what can we do about it?</p> <p>I’ve tried searching the web but can’t find any good answers on what to do. I’ve also tried to figure out some solutions on my own, but most of my ideas seem to be problematic in some way. New routines, no matter how rigorous, can be circumvented. Regular cloning of the production servers to create testing servers is a tedious and often very slow process. Automatic replication is not always reliable or even possible. So what on Earth should we do about this problem? How can we guarantee that the experience when testing will match the experience when going live?</p> <p>I imagine that others have this very problem as well. Or do they? Maybe it's just my particular company that is incompetent? Have any of you encountered the problem? If so, what did you do about it?</p> <p>Sincerely,</p> <p>Linus, Swedish systems developer</p> http://stackoverflow.com/questions/274024/regular-expressions-differences-between-browsers 1 Regular expressions: Differences between browsers Grank 2008-11-07T23:46:14Z 2008-11-08T19:01:12Z <p>I'm increasingly becoming aware that there must be major differences in the ways that regular expressions will be interpreted by browsers.<br /> As an example, a co-worker had written this regular expression, to validate that a file being uploaded would have a PDF extension:</p> <pre><code>^(([a-zA-Z]:)|(\\{2}\w+)\$?)(\\(\w[\w].*))(.pdf)$ </code></pre> <p>This works in Internet Explorer, and in Google Chrome, but does NOT work in Firefox. The test always fails, even for an actual PDF. So I decided that the extra stuff was irrelevant and simplified it to:</p> <pre><code>^.+\.pdf$ </code></pre> <p>and now it works fine in Firefox, as well as continuing to work in IE and Chrome.<br /> Is this a quirk specific to asp:FileUpload and RegularExpressionValidator controls in ASP.NET, or is it simply due to different browsers supporting regex in different ways? Either way, what are some of the latter that you've encountered?</p>