Define strong linear relaxation. I am familiar with LP relaxations, or relaxations of IPs or MIPs and the branch and bound technique and have not heard that term before.
If you mean LP relaxation, the answer will be simply "it depends" on the problem, the formulation of the original IP, and the IP that was relaxed to become a LP. If such is the question you are asking, it is kind of like asking if any sentence in a formal language once minimized will be short. Some may, some may not due to the construction. In some cases we may only have the basics to work off of (i.e., LP_opt
The integrality gap between the solution of an LP versus its IP may be an indication of how "far" away an answer is to its original counterpart. The quality of your LP solution will play a very important role on the number of nodes explored. With that being said, the closer the gap is between the IP and the LP solutions at best, the less nodes you will need to visit. Usually you don't want to solve the IP (as that's NP-hard), so it depends on the problem. Some will give you a nice gap that one can prove is true, while others really are elusive as their formulations do not work very well (for example, exponential number of constraints, etc...) or others are not even known to be produce constant-factored LP solutions away from an optimal value of a solution.
If anybody else can shed more light on this, I encourage it!
I have also tried the knapsack with CPLEX. It could solve the large instances in a short time. However, your point about symmetry is right. I have experienced in symmetry breaking for the graph coloring problem . It has reduced the CPU time and node size. Moreover, symmetry breaking has improved the LP relaxation and the root node gap.