Sometimes, there is a need to create message of 1MB or 10MB in size. Currently, one can do that using java API by reading text from custom file, or by incorporating huge string in YAML configuration. Usually, content of such string is not important, just it's size. It would be better to have option to specify it somehow:
Those values would be calculated only once and used each time in comparison with randomContentString where values are calculated in every iteration.
Another option would be to specify it by referencing file with content, maybe something similar as in #152 could be done.
Sometimes, there is a need to create message of 1MB or 10MB in size. Currently, one can do that using java API by reading text from custom file, or by incorporating huge string in YAML configuration. Usually, content of such string is not important, just it's size. It would be better to have option to specify it somehow:
Those values would be calculated only once and used each time in comparison with
randomContentString
where values are calculated in every iteration. Another option would be to specify it by referencing file with content, maybe something similar as in #152 could be done.