Let's say I have a table of the following structure:
| name | Type |
| ----------- |:-------------:|
| id | primary |
| word | unique |
| frequency | integer |
To this table, I am doing inserts, when a duplicate occurs, I'll update the frequency column. Pseudo code looks something like this:
try {
INSERT into WORDLIST word1
id = lastInsertedId
} catch(Exception) {
//if a duplicate happens
UPDATE wordlist WHERE word = "word1"
id = SELECT id FROM wordlist where word = "word1"
}
//save the updated/inserted id somewhere
The problem with the above code is that when a duplicate happens I am forced to do an extra select query to obtain the id of the updated row which is a performance buster and slows the app down for about 30%.
I'm open to other approaches but couldn't think of something better than this try/catch approach with an extra query
As
word
already has a unique index you can try to simplify your query by usinginsert or replace
:Note that in the conflict case a new rowid/ID is created and the old one is dropped. If you need to keep the ID you could resort to using a trigger, which may perform better than handling the special case in application code.
If all you want is implement a hit counter you can look at the following answer: https://stackoverflow.com/a/42556302/5794048