Hi, I am new to Hibernate Search and was wondering if below usecase is possible.
We have a table that stores transactional messages (xml). Since message sizes can be huge at times, we split messages into multiple records, each record having the same identifier but different sequence number.
So given this usecase, is it possible for Hibernate Search to aggregate these records together while performing the search as they share the same identifier? This will be required due to our chunking approach, as a word of importance can be split into multiple records (For example: "hello world" can be chunked as "hello w" and "orld" records. And we need to match these records if search text is "world").
Thanks.
|