I am writing an email application that interfaces with a MySQL database. I have two tables that are sourcing my data, one of which contains unsubscriptions, the other of which is a standard user table. As of now, I'm creating a vector of pointers to email objects, and storing all of the unsubscribed emails in it, initially. I then have a standard SQL loop in which I'm checking to see if the email is not in the unsubscribe vector, then adding it to the global send email vector. My question, is, is there a more efficient way of doing this? I have to search the unsub vector for every single email in my system, up to 50K different ones. Is there a better structure for searching? And, a better structure for maintaining a unique collection of values? Perhaps one that would simply discard the value if it already contains it?
|
|
If your C++ Standard Library implementation supports it, consider using a You can also use If you do use a node based container like |
|||||||||||
|
|
|||||||||||
|
|
Store your email adresses in a |
|||||||
|
|
The best way to do this is within MySQL, I think. You can modify your users table schema with another column, a If using a
If using a
|
|||
|