The following code snippet demonstrates some peculiar behaviour from Doctrine.

$user = Doctrine::getTable('User')->find(1);
$user->name = 'Zoppy';

// This line prevents the subsequent $user->save() from working as expected
$old_user = Doctrine::getTable('User')->find(1);

$user->save();

// Does not print 'Zoppy'
echo Doctrine::getTable('User')->find(1)->name . "\n";

What is going on here?

Is there some way to load the old version of a record before executing a save? It seems that Doctrine is caching something somewhere -- what exactly, and how do I turn it off! (At least temporarily.)

link|improve this question
feedback

1 Answer

I asked a similar question recently, although I phrased it in terms of relationships. The answer though is that this is down to the nature of caching in Doctrine. Doctrine is keeping hydrated objects in memory. You can clone the object, but as soon as you follow any relationships you'll be back to square one.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.