2

I'm using klov extent reporter for generating HTML reports for my automation results logging.

But i see the documentation section of klov where the klov report can be used without Redis server. i Like to know what advantage i would get using redis server ? as i'm not aware of this.

I have gone through some docs on internet to know about but really want to know how its required with klov reporter ?

Giri
  • 411
  • 2
  • 18
  • It's optional, but highly recommended especially for version 0.2.0 which is available on klov.herokuapp.com. See reason in the answers section. – foursyth Oct 02 '18 at 12:23

1 Answers1

3

Redis is an in-memory key value datastore, which makes it much faster compared to databases which keep data on the disk.

Most applications use Redis to cache frequently accessed data / information obtained after heavy computation in the memory to improve their speed.

Anuvrat Parashar
  • 2,960
  • 5
  • 28
  • 55