mcazzador
mcazzador
Hi, is it possible to write only first key occurrence (in final database table) and dont' make a "REPLACE INTO" if a replicated key is inserted in redis? Thanks
Hi, "REPLACE INTO" is not the best solution for me because i need to flag every DB records inserted on backend. REPLACE INTO in case of duplicate key (I want...
Thank's a lot
I do that, maybe it could be doing better, thanks def GetUpdateQuery_noreplace(tableName, mappings, pk): query = 'INSERT INTO %s' % tableName values = [val for kk, val in mappings.items() if...