Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^5: MongoDB replacing an array

by Mr. Muskrat (Canon)
on Aug 26, 2012 at 18:39 UTC ( [id://989864]=note: print w/replies, xml ) Need Help??


in reply to Re^4: MongoDB replacing an array
in thread MongoDB replacing an array

Okay, let's look at what you have.

The MongoDB::Collection docs show that update takes three hash references (\%criteria, \%object and \%options).

$col->update( { "host" => $host }, { '$set' => { "timestamp" => [ @new ] } }, { 'multiple' => 1, 'safe' => 1 } ) || die "$!";

Your criteria is simply host = $host. Your object should set timestamp to the contents of @new. Your options include multiple which tells it to update all matching records and safe which causes it to croak on errors (so the || die you have is superfluous).

Are you getting any errors or do the records just end up empty?

Based on the docs, it looks right. So what's missing? We don't know. Without seeing more of the code, I don't think anyone will be able to help you.

Replies are listed 'Best First'.
Re^6: MongoDB replacing an array
by neilwatson (Priest) on Aug 26, 2012 at 21:56 UTC

    There is not much more to show. Most is boring data manipulation that leads to the final array. The array holds only numbers. Nothing embedded.

    my $conn = MongoDB::Connection->new; my $db = $conn->mydb || die "$!"; my ($col, $cols, @cols, $q, $doc, @b, @c, @new, $x, $date, $l, $host); + @cols = $db->collection_names; foreach $cols (@cols) {

    Above a loop through some collections and for each make the new array. Then I try to replace the array.

    if ( @new > 1 ){ foreach my $xxx (@new){ print '@new = '.strftime('%Y-%m-%d', l +ocaltime($xxx))."\n"; } $col->update( { "host" => $host }, { '$set' => { "timestamp" => @new } }, { 'multiple' => 1, 'safe' => 1 } ) || die "$!";

    The foreach loop above is just to show there is data in @new. That works :). The update fails. The documentation for MongoDB is a bit sparse. I assume my syntax is wrong. Alas, I cannot figure how.

    Neil Watson
    watson-wilson.ca

      I'm hoping that I can learn a bit about MongoDB from trying to help you. Is the update happening within the @cols foreach loop? How are you getting $col? $col = $db->$cols;?

      Based on your @new foreach print, it looks like you are storing multiple timestamps in each record. Is that what you intended? If so, it seems odd to me to store timestamps in a column named timestamp. :)

        Yes, I am getting $col as you describe. No issue there. Yes, multiple timestamps in a record. This is what I intend.

        Neil Watson
        watson-wilson.ca

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://989864]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (6)
As of 2024-04-24 07:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found