Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For an Android/iOS app with SQLite running on both client's devices(user's cellphones) and server(main server), I am planning to implement a ProfileViewCount feature.

ProfileViewCount, as its name suggests, is incremented by 1 when a particular user's profile is viewed by other user.

For an example, please refer to this image:

As above diagram suggests, if Client 1, Client 2, and Client 4 view Client 3's profile, Client 3's ProfileViewCount is incremented by 3. After these requests, Client 3's ProfileViewCount will be changed to 103 from 100.

Problem:

SQlite's concurrency issue may become significant if there is a large number of Clients requesting to view a single Client's Profile at the same time.

Question:

  1. How many requests will make the users begin noticing the delay caused by concurrency issue? Is it an order of millions/billions (this case, I wouldn't worry about it)? Or, is it an order of tens/hundreds?
  2. If I were to stick with SQLite, is there a better database model that significantly reduces the delay?
  3. Alternatively, which database would you use on the server-side to overcome this concurrency issue?
share|improve this question
1  
Have you tried measuring how long it takes to do one update? Do you do a direct UPDATE ProfileTable SET ProvileViewCount = ProfileViewCount + 1 WHERE UserID = 1234, or do you try select and increment and update? Will you have an atomic transaction updating the profile, or will it be one of a longer series of statements? If you have single statement transactions and the time taken for an update is of the order of a millisecond or less, then you probably don't need to worry very much. If it is of the order of 100 ms, you probably need to worry — but I think it unlikely to take that long. – Jonathan Leffler Sep 2 '12 at 4:06
An alternative design would have a second table that could be CREATE TABLE ProfileViews (ViewedID INTEGER NOT NULL, ViewedBy INTEGER NOT NULL, WhenViewed TIMESTAMP NOT NULL); with appropriate keys (primary key all three columns). You insert into that table whenever a view occurs; periodically, you run a job to update the main Profile table with the extra view counts. You'd have to worry at some point about whether to add the extra views when reporting on the current view count. This presumes that insert operations on the table do not interfere with each other. – Jonathan Leffler Sep 2 '12 at 4:09

1 Answer

This setup seems strange to me. I would think that if you have a server component, you'd set up the app as sort of a thin client, meaning the app just knows how to fetch the data from the server. You could of course cache some of that data on the device or whatever, but either you should be reading and writing directly to the local database or else you should be writing/reading to and from the server. Am I missing something here?

share|improve this answer
Majority of data fields is not necessarily updated immediately after the modification. I am planning to record the data on user's local device temporarily on a .db file, then fetch the whole .db upon application OnPause and OnDestroy(). Only two data fields, including ProfileViewCount, are being updated upon user's action. I suppose this is better in terms of efficiency in network bandwidth usage and application processing speed. Is it an overkill? – melvkim Sep 2 '12 at 9:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.