Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当这些值是相对较大的序列化 Ruby 对象时,最常见的方法是检索列表中的所有值?
例如:
我需要遍历 Ruby 中的所有这些值,是否更高效:
lrange
llen
lindex
我会说,这没有什么区别。选择一个更容易为您编码的。使用 LRANGE 获得的任何速度提升都取决于传输大型对象所需的时间。我可能会一一处理它们,这样它会使用更少的内存。