Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
28answers
3k views

What is an ideal variable naming convention for loop variables?

If you are writing a simple little loop, what should you name the counter? Provide example loops!
12
votes
5answers
1k views

Keeping testing and production server environments clean, in sync, and consistent

It seems that the company that I work for is always struggling with our customers’ server environments. Specifically, we almost always encounter problems with testing servers and production servers, ...
6
votes
3answers
450 views

In game programming, how can I test whether a heuristic used is consistent or not?

I have thought of some heuristics for a big (higher dimensions) tic-tac-toe game. How do I check which of them are actually consistent? What is meant by consistency anyways?
5
votes
2answers
136 views

MongoDB Document Operations are Atomic and Isolated, but Are They Consistent?

I'm in the process of porting my application from an App Engine Datastore to a MongoDB backend and have a question regarding the consistency of "document updates." I understand that the updates on ...
3
votes
1answer
26 views

External read-only DB, my local DB, inconsistency

There's a service A that works with DB1, there's service B that works with DB1 and DB2. Service A has read-write access to DB1 and doesn't work with DB2 at all. Service 2 has read-write access to DB2 ...
3
votes
2answers
244 views

Are there any general algorithms for achieving eventual consistency in distributed systems?

Are there any algorithms that are commonly used for achieving eventual consistency in distributed systems? There are algorithms that have been developed for ACID transactions in distributed ...
2
votes
1answer
146 views

NoSQL: What does it mean for MongoDB or BigTable to not always be “Available”

Reading Nathan Hurst's Visual Guide to NoSQL Systems, he includes the CAP triangle: Consistency Availibility Partition Tolerance With SQL Server being an AC system, and MongoDD being a CP ...
2
votes
1answer
99 views

Transaction with Cassandra data model

According to the CAP theory, Cassandra can only have eventually consistency. To make things worse, if we have multiple reads and writes during one request without proper handling, we may even lose the ...
2
votes
3answers
143 views

How to check the Heap and Stack RAM consistency on an embedded system

I'm working on a project using a LEON2 Processor (Sparc V8). The processor uses 8Mbytes of RAM that need to be consistency checked during the Self-Test of my Boot. My issue is that my Boot obviously ...
2
votes
4answers
112 views

Memory consistancy in java.util.concurrent

From Memory Consistancy Property, we know that: "Actions in a thread prior to placing an object into any concurrent collection happen-before actions subsequent to the access or removal of that element ...
2
votes
4answers
107 views

Tools, rules or processes for checking internal consistency of XML config files

I've worked on projects that have very complex XML configuration, and one problem that's faced is maintaining the internal consistency of the XML. In this case I don't mean the strict XML schema ...
2
votes
3answers
333 views

How to keep long running NHibernate Session data consistent?

I have NHibernate sessions cached in the ASP.NET session. I came across a situation where a user edited an object so it's in their first level cache in the ISession. Another user then edited the same ...
2
votes
2answers
204 views

Control concurrency in multiple users web application gridview

Guys i'm with a big problem. I'm running a backoffice application, and imagine, i have a form than contains a gridview editable. 100 Users go to the page 100 Users view the form page as the data ...
2
votes
3answers
546 views

sleep(0)? consistent time keeping in code?

Right now i am loading a file then using gettimeofday and tracking the CPU time with tv_usec My results varies, i get 250's to 280s but sometimes 300's or 500's. I wrote usleep and sleep (0) and (1) ...
2
votes
3answers
845 views

AppEngine: Maintaining DataStore Consistency When Creating Records

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 ...
1
vote
1answer
22 views

How hector/cassandra handles sequential operations?

Using a hector Mutator I update some row over N sequential operation. Is there a guaranty, that changes happens in the order they where added to Mutator? The simplest example, if I delete some row ...
1
vote
0answers
18 views

Ivy : Consequences of modifying “checkconsitency”

I have two related questions about ivy: Note that the docs for Ivy's "checkconsitency" flag say : "The checkconsistency attribute allows you to enable or disable consistency checking between what ...
1
vote
1answer
45 views

Using cassandra and keep data consistency

As we all know, we have ConsistencyLevel of ReplicationFactor in cassandra. And we just want to leverge it for keeping data consistency. Because it is supposed to keep the price info. So which ...
1
vote
0answers
32 views

Preventing reentrancy and enforcing consistent state

So let's say I have a C API that looks like this: // configure various parameters int set_option(const char* name, const char* value); // callback invoked during long running operation typedef int ...
1
vote
1answer
70 views

Arc Consistency in Java, questions on implementation

So my goal is to write the method that solves a sudoku puzzle, we were given the method stub "public int[][] solve(int[][] board)". We are supposed to use arc consistency and domain splitting to find ...
1
vote
1answer
77 views

Eventual Consistency and messaging

I came across this problem, and so far it seems that the only solution is stronger consistency model. The service is Amazon S3, which provides eventual consistency. We use it as blob storage backend. ...
1
vote
2answers
140 views

Read-your-own-writes consistency in Cassandra

Read-your-own-writes consistency is great improvement from the so called eventual consistency: if I change my profile picture I don't care if others see the change a minute later, but it looks weird ...
1
vote
3answers
112 views

Enforcing method naming consistency in C# across classes

I have a series of classes in a project which all do essentially the same thing but on different objects. Due to some of them having been coded at different times and by different people there is some ...
1
vote
2answers
30 views

Should method/class comments be consistently applied or on a need basis only?

For consistency, I've always applied comments (in the form of a JavaDoc) to all methods and classes, even if they are simple getters and setters methods or very small wrapper classes. But I'm also ...
1
vote
3answers
132 views

Best way to keep the user-interface up-to-date?

This question is a refinement of my question http://stackoverflow.com/questions/3161392/different-ways-of-observing-data-changes. I still have a lot of classes in my C++ application, which are ...
1
vote
1answer
48 views

Are twisted RPCs guaranteed to arrive in order?

I'm using twisted to implement a client and a server. I've set up RPC between the client and the server. So on the client I do protocol.REQUEST_UPDATE_STATS(stats), which translates into sending a ...
1
vote
4answers
319 views

Inconsistency in programming languages [closed]

Subjectively, What is the most consistent programming language? [why] What is the most inconsistent programming language? [why] Does the inconsistent language have any abstraction libraries to ...
1
vote
2answers
83 views

Consistenty header file names between C++ libraries

In my project I use two libraries, v8 and boost. Boost uses the .hpp extension for its headers, while v8 uses the .h extension for its headers. In the end of day, my source code starts like that: ...
1
vote
2answers
113 views

using triggers for ensuring data consistency

I have a hierarchical structure stored in a table. Each element has a pointer to its previous, next and a parent create table CATALOGUE ( NAME VARCHAR2(300) not null, NEXT_ID NUMBER(38), ...
1
vote
2answers
157 views

Heap Consistency Checking on Embedded System

I get a crash like this: #0 0x2c58def0 in raise () from /lib/libpthread.so.0 #1 0x2d9b8958 in abort () from /lib/libc.so.0 #2 0x2d9b7e34 in __malloc_consolidate () from /lib/libc.so.0 #3 ...
1
vote
2answers
177 views

How do I automate the formatting of PHP source?

I have a large-ish PHP project (hundreds of files) that I've been brought in to work on and the source formatting hasn't been very consistent from the beginning. I'd now like to take all source and ...
1
vote
5answers
140 views

id columns or clustered primary keys/database consistency

If I had a table with the columns: Artist Album Song NumberOfListens ...is it better to put a clustered primary key on Artist, Album, and Song or to have an autoincrementing id column and put a ...
1
vote
7answers
190 views

Fast restart technique instead of keeping the good state (availability and consistency)

How often do you solve your problems by restarting a computer, router, program, browser? Or even by reinstalling the operating system or software component? This seems to be a common pattern when ...
1
vote
6answers
1k views

Regular expressions: Differences between browsers

I'm increasingly becoming aware that there must be major differences in the ways that regular expressions will be interpreted by browsers. As an example, a co-worker had written this regular ...
0
votes
3answers
59 views

How do I get exactly the same look & feel of native WP7 apps?

One thing I think is important is to give users a consistent look and feel for every page and every app on the Windows phone. I figured out how to do pretty page turns the same way native apps do ...
0
votes
0answers
14 views

Guaranteeing consistency while accessing files on a web server

I'm in the process of building a simple update server for an application. The parts of the application being updated are configuration files; the most up-to-date copies of these files exist on the ...
0
votes
1answer
32 views

How to check if two database are identical, and how much is the difference?

I have exported a database and then imported it into a new database. Then I can see that there is a difference in size, which I came to learn that it is due the space reuse issue for deleted entries ...
0
votes
0answers
47 views

Django denormalization and consistency:

As I'm quite new in Django I'm asking here for a little suggestion for the best practices in doing denormalization in Django. As per me I'm thinking of doing something like this: I have 2 models: ...
0
votes
0answers
38 views

Cache consistency when using memcached and a rdbms like MySQL

I have taken a database class this semester and we are studying about maintaining cache consistency between the RDBMS and a cache server such as memcached. The consistency issues arise when there are ...
0
votes
0answers
6 views

Handling consistency when making synchronous calls between two disjoint databases

I've recently come across a problem related to a project in which I have a setup consisting of 1-to-many data repositories (being either database, web-service etc., however to keep things more ...
0
votes
3answers
70 views

CSS: Trying to get a horizontal menu formatted the right way, not consistent accross browsers

I am trying to make a horizontal menu look pretty. Here's an example of what my HTML looks like. <div id="menu"> <ul> <li><a class="selected" ...
0
votes
1answer
25 views

How does transactions (in MySQL for me) behaves when are ran concurrently?

Here is my scenario: I have table A, that has 4 rows (id, col1, col2, col3) with a UNIQUE index put on the last 3 rows (id is primary key). Lets suppose there are 2 users: user Foo and user Bar. If ...
0
votes
2answers
28 views

How to avoid and log down some unexpected thing for db?

For example, a user create a product, and assign it into a category. In the category, we have some record: -phone, id:0 -computer, id:1 -pad, id:2 and a user create a product, the product need to ...
0
votes
3answers
55 views

How to handle a price change in DB just when a customer is placing an order online?

I have a Product database table with columns such as product_id, price, and inventory_count. A user clicks to buy a certain product at a certain price. My program generates a confirmation page ...
0
votes
0answers
106 views

Implications of Data Consistency Check implementation choice

Imagine we have a (simplistic) system in which we administer flight bookings. The system has a 3-tier layered architecture consisting of a client (presentation layer), server (service, business logic ...
0
votes
0answers
63 views

Oracle consistency - read on multi-version

I have a question about Oracle multi-version. The problem is which situation CR_XID=current XID and Env_UBA<CR_UBA will happen? please tell me in details APC sez: For those who are wondering, ...
0
votes
3answers
293 views

How to check SQLite file consistency (health check)

I am using a SQLite database file in my Android application that is created from several pieces stored in the assets folder by using the following approach: ReignDesign - Using your own SQLite ...
0
votes
1answer
120 views

Consistency Combo box ( two comboboxes )

I have two combo boxes in my program... look like this --> box1 1 - 2 - 3 - 4 - 5 - box2 1 - 2 - 3 - 4 - 5 - How can i do it work in this solution ? such as ...
0
votes
0answers
37 views

Is there a DBMS that uses the causal consistency model?

I'm looking for an open-source DBMS that uses immediate, causal consistency. I don't care about any other features or even the language it was written in as I'm only interested in the file backend.
0
votes
1answer
255 views

How hbase handle indexed table consistency with data table?

When there is high concurrency updates in index table how hbase ensure index consistency with data? that scan on index table won't see obsolete data when query primary table. For example there is ...

1 2