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:
- 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?
- If I were to stick with SQLite, is there a better database model that significantly reduces the delay?
- Alternatively, which database would you use on the server-side to overcome this concurrency issue?


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:06CREATE 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 mainProfiletable 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