A single line to 3 cashiers is ~3x faster than a separate line for each cashier
51–60 of 172 posts
Re: A single line to 3 cashiers is ~3x faster than a separate line for each cashier
#52What I didn't see in this article is why retailers don't do this today. I see a lot of positives listed and no negatives, so it seems like a no-brainer, right? Yet the biggest retailers like Walmart and Target have tons of lanes, and even do staggered front/back lanes which are terrible for the customers. Is it because there are negative feelings to seeing a long line, and that people do not expect it to be fast so t…
Based on these data points, it would seem as though more crowded places use this optimization.
Re: A single line to 3 cashiers is ~3x faster than a separate line for each cashier
#53What I didn't see in this article is why retailers don't do this today. I see a lot of positives listed and no negatives, so it seems like a no-brainer, right? Yet the biggest retailers like Walmart and Target have tons of lanes, and even do staggered front/back lanes which are terrible for the customers. Is it because there are negative feelings to seeing a long line, and that people do not expect it to be fast so t…
Edit: Yelp says this line system has been eliminated. http://www.yelp.com/biz/target-emeryville-2
Re: A single line to 3 cashiers is ~3x faster than a separate line for each cashier
#54See "Power of two random choices": http://www.eecs.harvard.edu/~michaelm/postscripts/handbook20...
EDIT: link
Re: A single line to 3 cashiers is ~3x faster than a separate line for each cashier
#55What I didn't see in this article is why retailers don't do this today. I see a lot of positives listed and no negatives, so it seems like a no-brainer, right? Yet the biggest retailers like Walmart and Target have tons of lanes, and even do staggered front/back lanes which are terrible for the customers. Is it because there are negative feelings to seeing a long line, and that people do not expect it to be fast so t…
Re: A single line to 3 cashiers is ~3x faster than a separate line for each cashier
#56Re: A single line to 3 cashiers is ~3x faster than a separate line for each cashier
#57FYI: This is an example of the branch of mathematics called queueing theory. http://en.wikipedia.org/wiki/Queueing_theory It's a fascinating study requiring a good knowledge of probability to use beyond the simplified models. It turns out from the math that throughput using a single queue is better than using multiple queues.
Re: A single line to 3 cashiers is ~3x faster than a separate line for each cashier
#58What I didn't see in this article is why retailers don't do this today. I see a lot of positives listed and no negatives, so it seems like a no-brainer, right? Yet the biggest retailers like Walmart and Target have tons of lanes, and even do staggered front/back lanes which are terrible for the customers. Is it because there are negative feelings to seeing a long line, and that people do not expect it to be fast so t…
Some places do this. Fry's Electronics, for example. It works fine. Some supermarkets I've been in do this for their express lines ("10 items or less"). Oh, and airline ticket counters are routinely run this way.
Re: A single line to 3 cashiers is ~3x faster than a separate line for each cashier
#59It becomes even more obvious if you think of it like scheduling processes on a CPU. Why needlessly set CPU affinity and only run on a single CPU when you could just take the next available timeslice on any CPU?
> Why needlessly set CPU affinity There are practical reasons to do that. That is common in realtime systems. Trying to isolate the cpu for a particular process. So that is available faster when that process needs it. You could also have n-realtime processes. You don't want them competing for the same CPU if you know ahead of time you can allocate a CPU for each one of them. Another reason is caching. For example you…