Issues
- Avoid unnecessary unproxying of ORM entitiesHSEARCH-3100Yoann Rodière
- Add technical documentation about Bridges in the POJO mapperHSEARCH-3130Yoann Rodière
- Add technical documentation about the general structure and entry points of BackendsHSEARCH-3131Yoann Rodière
- Support reindexing an entity whose document ID changedHSEARCH-3202Yoann Rodière
- Predicates on bridge-registered object fieldsHSEARCH-3320Yoann Rodière
- Multi-fields (backend-defined copies of fields using a slightly different type)HSEARCH-3465Yoann Rodière
- Implement multi-index operations such as purge or delete-by-query as a single Elasticsearch callHSEARCH-3596Yoann Rodière
- Replace the searchable/sortable/projectable flags for fields with a single array of feature flagsHSEARCH-3633Yoann Rodière
- Custom container extractors with the ORM mapperHSEARCH-3688Yoann Rodière
- Extracting and indexing map entriesHSEARCH-3689Yoann Rodière
- Regexps on normalized fields are normalized on ElasticsearchHSEARCH-4171Yoann Rodière
- Applying identifier/value/types/property bridges to dynamic-map propertiesHSEARCH-4238Yoann Rodière
- @ObjectField/@ObjectBinding: unify @IndexedEmbedded, @PropertyBinding, @TypeBinding and moreHSEARCH-4299Yoann Rodière
- Simpler representation of paths in annotation mappingHSEARCH-4392Yoann Rodière
- Improve performance of schema validation with Elasticsearch and many indexesHSEARCH-4651Yoann Rodière
- Factorize all code related to POJO tree processingHSEARCH-4719Yoann Rodière
- Hibernate Reactive integrationHSEARCH-4922Yoann Rodière
- Move EntityLoadingBinder, SelectionLoadingStrategy, etc. to pojo-baseHSEARCH-5080Yoann Rodière
- JSR-352: Add integration tests for Spring BatchHSEARCH-2692Yoann Rodière
- Move more of the projection DSL to the engineHSEARCH-3430Yoann Rodière
- Lower the wait on pending works when closing Elasticsearch index managersHSEARCH-3576Yoann Rodière
21 of 21
Avoid unnecessary unproxying of ORM entities
Description
duplicates
relates to
Details
Assignee
Yoann RodièreYoann RodièreReporter
Yoann RodièreYoann RodièreComponents
Priority
Major
Details
Details
Assignee
Yoann Rodière
Yoann RodièreReporter
Yoann Rodière
Yoann RodièreComponents
Priority
Created April 11, 2018 at 7:12 AM
Updated October 23, 2024 at 1:35 PM
Activity
Show:
Yoann RodièreOctober 23, 2024 at 1:23 PMEdited
Please ignore – just testing webhooks.
EDIT: Testing edits, too.
We currently unproxy entities even if we don’t really need to.
In particular:
When we only need the ID, and the ID is retrieved through a getter, we don't need to unproxy
(Probably much harder to implement) When we use getter access exclusively, and the type of the proxy is the type declaring the getter or a subtype, we don't need to unproxy
See:
org.hibernate.search.v6poc.entity.pojo.mapping.impl.PropertyIdentifierMapping#getIdentifier
org.hibernate.search.v6poc.entity.pojo.mapping.impl.CachingCastingEntitySupplier#get
(Once PR #38 has been merged)
org.hibernate.search.v6poc.entity.pojo.dirtiness.impl.PojoImplicitReindexingResolverCastedTypeNode#resolveEntitiesToReindex