Basically, I'm wonder what would be the sibling function to:
function qa_set_option($name, $value, $todatabase = true) {...}
Something like this:
function qa_get_option($name, $fromdatabase = true) {...}
So basically I need to go dodge the cache, get to the database, fetch the value and then update the cache. How should I proceed in order to only fetch the given option and not the whole table?