In general, what are the advantages and disadvantages of using an OpenStruct as compared to a Struct? What type of general use cases would fit each of these?
|
With an OpenStruct, you can arbitrarily create attributes. A Struct, on the other hand, must have its attributes defined when you create it. The choice of one over the other should be based primarily on whether you need to be able to add attributes later. The way to think about them is as the middle ground of the spectrum between Hashes on one side and classes on the other. They imply a more concrete relationship amongst the data than does a Hash, but they don't have the instance methods as would a class. A bunch of options for a function, for example, make sense in a hash; they're only loosely related. A name, email, and phone number needed by a function could be packaged together in a Struct or OpenStruct. If that name, email, and phone number needed methods to provide the name in both "First Last" and "Last, First" formats, then you should create a class to handle it. |
|||||
|
|
Other benchmark:
For the impatient who wants to get an idea of the benchmark results, without running them themselves, here is the output of the code above (on an MB Pro 2.4GHz i7)
|
||||
|
|
|
I have a few remarks about Struct vs. OpenStruct vs. Hash in my recent blog comment "Structs inside out", just in case someone is interested. |
|||
|
|
|
For completeness: Struct vs. Hash vs. OpenStruct vs. Class Running similar code as burtlo's, on Ruby 1.9.2, (1 of 4 cores x86_64, 8GB RAM): creating 1 Mio Structs : 1.43 sec , 219MB / 90MB (virt/res) creating 1 Mio Class instances : 1.43 sec , 219MB / 90MB (virt/res) creating 1 Mio Hashes : 4.46 sec , 493 MB / 364MB (virt/res) creating 1 Mio OpenStructs : 415.13 sec , 2464 MB / 2.3GB (virt/res) # ~100x slower than Hashes creating 100K OpenStructs : 10.96 sec , 369 MB , 242 MB (virt/res) OpenStructs are sloooooow and memory intensive , and don't scale well for large data sets Creating 1 Mio OpenStructs is ~100x slower than creating 1 Mio Hashes.
|
|||||||
|
|
OpenStructs use significantly more memory and are slower performers versus Structs.
On my system the following code executed in 14 seconds and consumed 1.5 GB of memory. Your mileage might vary:
That finished nearly instantaneously and consumed 26.6 MB of memory. |
||||
|
|
The use cases for the two are quite different. You can think of the Struct class in Ruby 1.9 as an equivalent to the struct declaration in C. In Ruby Struct.new takes a set of field names as arguments and returns a new Class. Similarly, in C, a struct declaration takes a set of fields and allows the programmer to use the new complex type just like he would any built-in type. Ruby:
C:
The OpenStruct class can be compared to an anonymous struct declaration in C. It allows the programmer to create an instance of a complex type. Ruby:
C:
Here are some common use cases. OpenStructs can be used to easily convert hashes to one-off objects which respond to all the hash keys.
Structs can be useful for shorthand class definitions.
|
|||
|
|
|
Have a look at the API with regard to the new method. A lot of the differences can be found there. Personally, I quite like OpenStruct, as I don't have to define the structure of the object beforehand, and just add stuff as I want. I guess that would be its main (dis)advantage? |
||||
|
|