b3d98d6b8b300e23e1b4900af3bb476075d3fa62,perfkitbenchmarker/linux_packages/redis_server.py,,_Install,#Any#,46

Before Change


  Installs the redis package on the VM.
  vm.Install("build_tools")
  vm.Install("wget")
  vm.RemoteCommand("cd %s; git clone %s" %
                   (linux_packages.INSTALL_DIR, REDIS_GIT))
  vm.RemoteCommand("cd %s && git checkout %s && make" % (
      GetRedisDir(), FLAGS.redis_server_version))


def YumInstall(vm):
  Installs the redis package on the VM.

After Change


  Installs the redis package on the VM.
  vm.Install("build_tools")
  vm.Install("wget")
  vm.RemoteCommand(f"cd {linux_packages.INSTALL_DIR}; git clone {REDIS_GIT}")
  vm.RemoteCommand(
      f"cd {GetRedisDir()} && git checkout {_VERSION.value} && make")

Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 8

Instances


Project Name: GoogleCloudPlatform/PerfKitBenchmarker
Commit Name: b3d98d6b8b300e23e1b4900af3bb476075d3fa62
Time: 2021-03-31
Author: liubrandon@google.com
File Name: perfkitbenchmarker/linux_packages/redis_server.py
Class Name:
Method Name: _Install


Project Name: GoogleCloudPlatform/PerfKitBenchmarker
Commit Name: 734c130f208c8da3c693c2595035cc9bd8a65f78
Time: 2021-01-13
Author: dphanekham@smu.edu
File Name: perfkitbenchmarker/linux_packages/netperf.py
Class Name:
Method Name: _Install


Project Name: GoogleCloudPlatform/PerfKitBenchmarker
Commit Name: b3d98d6b8b300e23e1b4900af3bb476075d3fa62
Time: 2021-03-31
Author: liubrandon@google.com
File Name: perfkitbenchmarker/linux_packages/redis_server.py
Class Name:
Method Name: _Install


Project Name: GoogleCloudPlatform/PerfKitBenchmarker
Commit Name: e645f14ec0e5f5151e332e4a485d9893854893da
Time: 2018-04-27
Author: ferneyhough@google.com
File Name: perfkitbenchmarker/providers/azure/azure_virtual_machine.py
Class Name: AzureVirtualMachine
Method Name: DownloadPreprovisionedBenchmarkData