Hi, I'm using the data mapper pattern in a PHP app I'm developing and have a question. At present, you request a Site object with a specific ID and the mapper will lookup the row, create an object and return it. However, if you do this again for the same Site you end up with two different objects with identical data. eg.:
$mapper = new Site_Mapper();
$a = $mapper->get(1);
$b = $mapper->get(1);
$a == $b // true
$a === $b // false
So, my question is, should I:
- Store instantiated Site objects in the mapper so I can then check if they already exist before creating a new one (could be a problem if there's multiple mappers of the same type)
- Do the same as #1 but ensure there is only ever one instances of each mapper
- Do the same as #1 but use a static property so multiple instances isn't a problem
- Don't worry about it because it's probably not a problem
