Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
436 views

Rails 3.1 Identity Map issues?

Does anyone know the key issues that the Rails 3.1 IdentityMap feature has that has forced the feature to be disabled by default? I'm sure that there are minor specific issues, but are there any major ...
2
votes
2answers
154 views

Where can I find a C# implementation of the “Identity Field” (fowler) pattern that support multiple fields of different types

I've found one that allows multiple fields of type long. However, i'm not sure how useful that is since sometimes we may have Guids or even dates for example. I could also modify his to support my ...
2
votes
6answers
319 views

Are NHibernate ICriteria queries cached or put in the identity map?

Using NHibernate I usually query for single records using the Get() or Load() methods (depending on if I need a proxy or not): SomeEntity obj = session.Get<SomeEntity>(new PrimaryKeyId(1)); ...
1
vote
0answers
21 views

Storage for DataMappers in ASP.NET WebApplication

In Martin Fowler's "Patterns of Enterprise Application Architecture" is described approach for organizing DAL like a set of mappers for entities. Each has it's own IdentityMap storing specific entity. ...
1
vote
0answers
33 views

Rails 3.1 record object instantiating twice in Controller actions?

So i have a controller that basically fetches a record and instantiates into and object. When it runs, the object is instantiated twice with different object_ids. e.g. def index @users= ...
0
votes
2answers
41 views

Patterns/structures for reverse navigating a many-to-many relationship?

A user story: The user of our app creates road trips. A roadtrip is a sequential series of interesting destinations. Each destination has some details about an activity or sight to see while ...
0
votes
0answers
22 views

Why wouldn't I want to combine an IdentityMap with a distributed cache?

I'm trying to introduce more sophisticated caching into my domain model, primarily used in a ASP.NET Web scenario. Ideally, I'd want to use an IdentityMap in conjunction with a distributed Cache. I ...
0
votes
0answers
68 views

What happens if objects are never found in the Hibernate IdentityMap?

I have a special scenario in which entities retrieved from the store with Hibernate, are immediately transformed in new objects which will be used on superior layers. Thus, the object stored in the ...
0
votes
3answers
195 views

Is there a concurrency problem here? How to test it during development?

Scenario: There exists 'n' teams who each work on their virtual 'wall' (like facebook's wall). Each team sees only their own wall and the posts on it. The posts can be edited by the author of the post ...
0
votes
2answers
54 views

How can I get access to or replace LINQ to SQL's IdentityManager?

I need to find out if an object with a particular primary key is already attached to a DataContext and get the entity from the DataContext if it is attached. Is there any way at all to do this that ...
0
votes
1answer
388 views

how to have identity map in doctine ORM

need to use a good PHP ORM that has elements of Datamapper and i am not clever enough to code it myself. chosen doctrine, but after reading through the user guide, cannot find anything that says how ...