本文整理汇总了Golang中github.com/pivotal-cf/cf-redis-broker/redis.LocalRepository.InstanceDataDir方法的典型用法代码示例。如果您正苦于以下问题:Golang LocalRepository.InstanceDataDir方法的具体用法?Golang LocalRepository.InstanceDataDir怎么用?Golang LocalRepository.InstanceDataDir使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/pivotal-cf/cf-redis-broker/redis.LocalRepository
的用法示例。
在下文中一共展示了LocalRepository.InstanceDataDir方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: ensureRunning
func ensureRunning(instance *redis.Instance, repo *redis.LocalRepository, processController *redis.OSProcessController, logger lager.Logger) {
configPath := repo.InstanceConfigPath(instance.ID)
instanceDataDir := repo.InstanceDataDir(instance.ID)
pidfilePath := repo.InstancePidFilePath(instance.ID)
logfilePath := repo.InstanceLogFilePath(instance.ID)
err := processController.EnsureRunning(instance, configPath, instanceDataDir, pidfilePath, logfilePath)
if err != nil {
logger.Fatal("Error starting instance", err, lager.Data{
"instance": instance.ID,
})
}
}
示例2:
})
It("overwrites the config file", func() {
originalConfigContents := []byte("my custom config")
err := ioutil.WriteFile(repo.InstanceConfigPath(instance.ID), originalConfigContents, 0755)
Ω(err).NotTo(HaveOccurred())
writeInstance(instance, repo)
configContents, err := ioutil.ReadFile(repo.InstanceConfigPath(instance.ID))
Ω(err).NotTo(HaveOccurred())
Ω(configContents).ShouldNot(Equal(originalConfigContents))
})
It("does not clear the data directory", func() {
dataFilePath := filepath.Join(repo.InstanceDataDir(instance.ID), "appendonly.aof")
originalDataFileContents := []byte("DATA FILE")
err := ioutil.WriteFile(dataFilePath, originalDataFileContents, 0755)
Ω(err).NotTo(HaveOccurred())
writeInstance(instance, repo)
dataFileContents, err := ioutil.ReadFile(dataFilePath)
Ω(err).NotTo(HaveOccurred())
Ω(dataFileContents).Should(Equal(originalDataFileContents))
})
It("does not clear the log directory", func() {
logFilePath := filepath.Join(repo.InstanceLogDir(instance.ID), "redis-server.log")