dqname_widnows.go

package nsqd

// On Windows, file names cannot contain colons.
func getBackendName(topicName, channelName string) string {
    // backend names, for uniqueness, automatically include the topic... <topic>;<channel>
    backendName := topicName + ";" + channelName
    return backendName
}
				
时间: 2024-10-06 03:32:43

dqname_widnows.go的相关文章