public Tuple createTuple(EntityKey key, TupleContext tupleContext) {
final Cache<SerializableKey> entityCache = datastoreProvider.getEntityCache();
final HashMap<String, Object> tuple = new HashMap<String, Object>();
entityCache.put( new Element( new SerializableKey( key ), tuple ) );
return new Tuple( new MapTupleSnapshot( tuple ) );
}