Pstore confusion for a beginner

S

Steve P.

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.
 
G

Gavin Sinclair

Questions:
1. In this line of code "store[:this] ||=3D Faunadb.new("")" , what is th= e
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 ||=3D b is short for "a =3D a || b", just like "a +=3D b" is short for "a=
=3D a + b".

|| is pronounced "or" (note: Ruby has two similar operators || and
'or' with an important difference -- see any Ruby reference).

a ||=3D b is equivalent to the following code

if a
=A0 # nothing happens
else
=A0 a =3D b
end

So store[:this] ||=3D ...=A0 is saying "if store[:this] doesn't already
exist, set it to...".
2. In this line of code fdb1=3Dstore[: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 =3D {}
hash[:name] =3D "John Smith"
hash[:address] =3D "..."

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,065
Latest member
OrderGreenAcreCBD

Latest Threads

Top