gmarzot / jmeter-hls-player

JMeter Plugin to simulate the load of an HLS Player
Apache License 2.0
6 stars 2 forks source link

Make Parser Class Static or Do Caching #6

Open gmarzot opened 5 years ago

gmarzot commented 5 years ago

Right now the Parser class is used by the PlayerController and MediaPlaylistSampler classes. The class itself has no fields or instance variables, yet they each create an instance of this class. This class should either become static or should cache the playlists so that instances make sense.