镜像自地址
				https://github.com/quitesimpleorg/hs9001.git
				已同步 2025-11-03 23:09:29 +01:00 
			
		
		
		
	history: Only start search when at least 2 chars have been entered
Starting search with the first character leads to a noticable delay. This hack ensures a more pleasant experience.
这个提交包含在:
		@@ -12,6 +12,10 @@ type history struct {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (h *history) GetHistoryByPrefix(prefix string) (ph []string) {
 | 
			
		||||
	/* Hack for performance reasons */
 | 
			
		||||
	if len(prefix) < 2 {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	opts := searchopts{}
 | 
			
		||||
	opts.order = "DESC"
 | 
			
		||||
	cmdqry := prefix + "%"
 | 
			
		||||
@@ -27,6 +31,10 @@ func (h *history) GetHistoryByPrefix(prefix string) (ph []string) {
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
func (h *history) GetHistoryByPattern(pattern string) (ph []string, pos []int) {
 | 
			
		||||
	/* Hack for performance reasons */
 | 
			
		||||
	if len(pattern) < 2 {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	opts := searchopts{}
 | 
			
		||||
	opts.order = "DESC"
 | 
			
		||||
	cmdqry := "%" + pattern + "%"
 | 
			
		||||
 
 | 
			
		||||
		在新工单中引用
	
	屏蔽一个用户