The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
28 views

Updating memcached entry

I am currently developing a system optimized for read. The architecture is a MySQL as the authoritative, persistent storage, and a memcache layer between the MySQL db and clients. Writes happen from ...
4
votes
1answer
65 views

verifying data consistency between two postgresql databases

This is specifically about maintaining confidence in using various replication solutions that you'd be able to failover to the other server without data loss. Or in a master-master situation that you ...
0
votes
0answers
8 views

Consistency in Stock Market Site Servers

What type of data consistency is implemented on Stock Market Site Servers? For example Weak consistency,FIFO consistency etc.
1
vote
2answers
51 views

Consistency for read from distributed databases

I have a set of databases, distributed across multiple locations in the network and for ex. one client that needs to store some data in that databases. I need to make sure my data will always be ...
0
votes
1answer
105 views

How to validate NOT NULLABLE attributes from a POJO vs list of required attributes?

My issue is that I need to persist in my database two kind of status "VALID" and "INVALID" according to data validation, it means, in my database all attributes are NULLABLE but another process will ...
0
votes
1answer
20 views

Implementing data mathematical consistency among table rows

I have 3 tables: Persons, Variables, Person_Data. Person_Data table has numerical data on various variables for different persons. Columns are: variable_value, person_id (foreign key to Persons) and ...
2
votes
1answer
103 views

Repository pattern and data consistency

In my project I'm using repository pattern for business-layer. Reading alot about repository pattern I haven't found any information on how to keep business objects synchronized with data. Lets say ...
0
votes
1answer
113 views

Serialization of Application Object

At first I have strong Java knowledege, but however just started with Android. My Android app is downloading some fairly complex data (texts, dates, images) which I am saving in a custom object. The ...
1
vote
0answers
131 views

MySQL - sql server: consistency check

I'm trying to check the results of a data load between two databases. Unfortunately, I only have access to one database (MySQL) directly, the company managing MSSQL can expose it to us via an API. ...
1
vote
1answer
185 views

Git and Dropbox - local repo

I have read noumerous threads and watched many videos on combining Dropbox and Git functionality. One such thread is this: Using git+dropbox together effectively? Here is what i want to do: I am ...
0
votes
2answers
407 views

MySQL: How to lock tables and start a transaction?

TL;DR - MySQL doesn't let you lock a table and use a transaction at the same time. Is there any way around this? I have a MySQL table I am using to cache some data from a (slow) external system. ...
0
votes
1answer
78 views

solution to synch back cache value to database?

below is the scenario: here is a access statistic system, just like Blogger's overviewstats function. Statistic data is stored persistent in database(like MySQL), while using a key-value cache(now is ...
5
votes
1answer
341 views

Should a RESTful GET response return a resource's ID?

A number of the developers here are having a friendly (some would say religious) discussion about whether a GET request from a RESTful API should return the ID of the requested resource. Let's assume ...
1
vote
2answers
114 views

Solr consistency in python code

I have got python code running on multiple analyzer machines each picking documents from solr(select operations) and modifying data in solr by re-submitting the documents with the updated fields from ...
0
votes
0answers
24 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
91 views

Rails consistency check on record update

I will start a system and we have chosed rails because it covers all our needs. We need consistency on database updates in some point of the system and I remember that I found in some official ...
4
votes
4answers
3k views

How reliable is the adler32 checksum?

I wonder how reliable the adler32 checksum is, compared to e.g. md5 checksums? It was told on wikipedia that adler32 is "much less reliable" than md5, so I wonder how much, and in which way? More ...
6
votes
5answers
3k views

Are there any difference between data integrity and data consistency?

I'm a little confused about data consistency and data integrity. From Oracle Database Concepts: data integrity -------------- Business rules that dictate the standards for acceptable data. These ...
2
votes
3answers
432 views

How do I ensure data consistency in this concurrent situation?

The problem is this: I have multiple competing threads (100+) that need to access one database table Each thread will pass a String name - where that name exists in the table, the database should ...
0
votes
1answer
542 views

“Maximum allowed trigger depth” in SQL Server?

I know about "Allow Triggers to Fire Others" server setting that allows the action taken by a trigger to fire another trigger (or not), and as I understand it, my only options are True (allow trigger ...
5
votes
4answers
2k views

What algorithm to use to calculate a check digit?

What algorithm to use to calculate a check digit for a list of digits? The length of the list is between 8 and 12 digits. see also: How to generate a verification code/number?
5
votes
9answers
567 views

Should you check for wrong parameter values in the constructor?

Do you check for data validity in every constructor, or do you just assume the data is correct and throw exceptions in the specific function that has a problem with the parameter?
11
votes
9answers
11k views

How to generate a verification code/number?

I'm working on an application where users have to make a call and type a verification number with the keypad of their phone. I would like to be able to detect if the number they type is correct or ...