(no title)
maxmcd
|
3 months ago
This will block threads while waiting for other threads to write. That might work great for your threading model but I usually end up putting the writer in one thread and then other threads send writes to the writer thread.
busymom0|3 months ago
First one for writing with flags:
Second one for reading with flags: As you can note, I have SQLITE_OPEN_FULLMUTEX on both of them. Should I only have it for the writing one?maxmcd|2 months ago