I have a situation for Ruby, where an object is possibly necessary to be created, but it is not sure. And as the creation of the object might be costly I am not too eager creating it. I think this is a clear case for lazy loading. How can I define an object which is not created only when someone sends a message to it? The object would be created in a block. Is there a way for simple lazy loading/initialisation in Ruby? Are these things supported by some gems, which provide different solutions for various cases of lazy initialisation of objects? Thanks for your suggestions!
|
Instead of rolling your own, you could use lazy.rb. There are some examples of usage in the Ruby Best Practices book see page 123 and forward. |
|||
|
|
There are two ways. The first is to let the caller handle lazy object creation. This is the simplest solution, and it is a very common pattern in Ruby code.
The second option is to let the object initialise itself lazily. We create a delegate object around our actual object to achieve this. This approach is a little more tricky and not recommended unless you have existing calling code that you can't modify, for example.
You could also use the stdlib |
|||||||
|
|
If you want to lazily evaluate pieces of code, use a proxy:
You then use it like this:
You can use this code to do arbitrarily complex initialization of expensive stuff:
How does it work? You instantiate a LazyProxy object that holds instructions on how to build some expensive object in a Proc. If you then call some method on the proxy object, it first instantiates the expensive object and then delegates the method call to it. |
||||
|
|