From: Steve P. on 16 Jul 2010 17:18 Greetings, I am getting my feet wet with Ruby object persistence. I decided to look at PStore first, then move to Yaml, as it was mentioned in my Peter Cooper Ruby book. I know that PStore is typically used for program config value persistence, and that the transaction keyword fairly much ensures the integrity of the operation, and a binary pstore file is created. Beyond that, I am pretty lost. I searched the forum here, and googled pstore, but it was not that helpful. What I wanted to do, as a start, was to save my entire object "fdb1", which is an instance of class "Faunadb". Then, after closing Ruby, "copy back" the saved object, and list object variable contents, to demonstrate persistence conclusively. It seems to work, but I have questions! The code to save the object, that I have cobbled together, without understanding it, is: <start of "copy to" code> ##code above here to populate the object fdb1 store=PStore.new("/home/user1/ruby/pstorefile") store.transaction do store[:this] ||= Faunadb.new("") store[:this] = fdb1 end <end of "copy to" code> I can see the created file, and cat it though it is binary. And the code to restore it, is: <start of "copy back" code> fdb1=Faunadb.new("") store=PStore.new(/home/user1/ruby/pstorefile") store.transaction do fdb1=store[:this] end fdb1.listobs #to prove the data is back. <end of "copy back" code> Questions: 1. In this line of code "store[:this] ||= Faunadb.new("")" , what is the double pipe equal sign doing? Does it just indicate that the :this symbol points to the new Faunadb instance? Why is the double pipe thingy not used on the "copy back" code fragment? Would I use the symbol to just keep track of what is stored? I know :this is pretty goofy. 2. In this line of code fdb1=store[:this] from the restore, I noticed that it is necessary to have the same symbol :this, in this code fragment, as it was in the prior fragment, because I get an error otherwise. Is this correct? My environment is ruby 1.8.7 on Linux. Any tips appreciated. Thanks in advance. Steve. -- Posted via http://www.ruby-forum.com/.
From: Gavin Sinclair on 17 Jul 2010 08:20 > > Questions: > 1. In this line of code "store[:this] ||= Faunadb.new("")" , what is the > double pipe equal sign doing? Does it just indicate that the :this > symbol points to the new Faunadb instance? Why is the double pipe thingy > not used on the "copy back" code fragment? Would I use the symbol to > just keep track of what is stored? I know :this is pretty goofy. > a ||= b is short for "a = a || b", just like "a += b" is short for "a = a + b". || is pronounced "or" (note: Ruby has two similar operators || and 'or' with an important difference -- see any Ruby reference). a ||= b is equivalent to the following code if a # nothing happens else a = b end So store[:this] ||= ... is saying "if store[:this] doesn't already exist, set it to...". > > 2. In this line of code fdb1=store[:this] from the restore, I noticed > that it is necessary to have the same symbol :this, in this code > fragment, as it was in the prior fragment, because I get an error > otherwise. Is this correct? > A PStore object is like a hash. Imagine you used a hash to store some name and address details. hash = {} hash[:name] = "John Smith" hash[:address] = "..." When you wanted to retrieve the name and address, you'd need to use the same keys :name and :address, wouldn't you? puts hash[:name] puts hash[:address] Hope this helps, Gavin
From: Rick DeNatale on 17 Jul 2010 15:43 On Sat, Jul 17, 2010 at 8:20 AM, Gavin Sinclair <gsinclair(a)gmail.com> wrote: > a ||= b is short for "a = a || b", just like "a += b" is short for "a = a + b". > NOT AGAIN! http://talklikeaduck.denhaven2.com/2008/04/26/x-y-redux -- Rick DeNatale Blog: http://talklikeaduck.denhaven2.com/ Github: http://github.com/rubyredrick Twitter: @RickDeNatale WWR: http://www.workingwithrails.com/person/9021-rick-denatale LinkedIn: http://www.linkedin.com/in/rickdenatale
|
Pages: 1 Prev: Ruby 1.9.1 Array#combination kinda lazy Next: [ANN] Rumai 3.3.0 |