I’m working on a rails app, and in rails queue
is a reserved word. I need to make a Queue model for my app, and I’m stuck because I don’t know what else to call it.
Has anyone else run into this before, and if so what did you call your Queue that can’t be called a Queue?
3
If this is not a priority queue*, you can call it FIFO
, for the abbreviated name of the strategy used by the data structure.
* If it is a priority queue, calling it priorityQueue
would be a good choice, and it wouldn’t conflict with the reserved word
3
Or add the type of things you plan on storing in it: taskQueue, messageQueue.