Steffen Gransow
Steffen Gransow
The current implementation of caching is a leftover of a proof-of-concept it seems and should be improved. The `getHash` and `getSubjectName` methods should be refactored and probably both of them...
ATM: [``ProjectionFinder::mapResultData``](https://github.com/honeybee/honeybee/blob/master/src/Infrastructure/DataAccess/Finder/Elasticsearch/Projection/ProjectionFinder.php#L39) method maps results to whatever Projection instances (via expected ``@type`` field in the result doc). That is, it always returns a `FinderResult` with projections regardless of whether the...
The removed event doesn't contain the aggregate root identifier of the removed referenced item. Only the item identifier itself is provided along with the ar type.
The command metadata is at the moment put into the data payload of the events. It might be better to have `data` and `metadata` on the event and then let...
### Feature request **tl;dr:** Using `post_max_size=${PHP_POST_MAX_SIZE}` is not supported atm. Not sure you want to support that, but that's the issue I stumbled upon. ### Background: I wanted to test...
I ran into a problem where the `IniUtil::iniSizeToBytes` function threw errors due to the usage of environment variables inside PHP ini settings to configure size values. Example: ```ini memory_limit=${PHP_MEMORY_LIMIT} post_max_size=$PHP_POST_MAX_SIZE...