Hi Matthew,
> So what I'd like to be able to do is include key="Woodward" in the URL and
> have the value of the key in the URL be what's used in my match regex, or if
> there's a different way to do exact matches (because in this case I will
> always be pulling by exact key matches) and still have the rest of this work
> as described before, that's fine as well.
Create a view with the following map function:
function(o) {
emit(o.lastName, o);
}
Then call the view with:
?key="Woodward"
... or maybe I don't understand your question?
Regards,
Aurélien