I often find myself asking a Stack Overflow question about how to perform a very specific operation X.
X attempts to accomplish a single, specific task, in a specific way, using a specific tool.
X is part of one method of accomplishing larger task Y, which in turn is one way of achieving larger, more nebulous goal Z.
I may already know of two or three ways of accomplishing Y that do not involve X, and two or three ways of achieving Z that don't involve Y, and may not even use the same tool(s) as X. I would prefer X over those options if possible, because it requires less work, simplifies the code base, etc.
If I mention Y or Z, people tend to post answers suggesting other ways of accomplishing them that go off on wild tangents ("Use this other tool instead, it's better!") and/or re-hash things that I already know ("If you completely change your software's architecture, then X is no longer an issue."). I feel obligated to accept answers if they do answer the question, even if the information provided isn't what I wanted.
On the other hand, I'm wary of making questions too specific, lest I make it impossible for people to figure out what I'm trying to do.
Just how much context about the relationships between X, Y, and Z should be included in the question? Is it better to be really specific, and not include any context at all, or should I try to describe the complete background? Or somewhere in between?