mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 08:21:11 +00:00 
			
		
		
		
	- Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7337 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Reviewed-by: Beowulf <beowulf@beocode.eu> Reviewed-by: Panagiotis "Ivory" Vasilopoulos <git@n0toose.net> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			886 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			886 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2023 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package db
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
 | 
						|
	"forgejo.org/modules/indexer/internal"
 | 
						|
)
 | 
						|
 | 
						|
var _ internal.Indexer = &Indexer{}
 | 
						|
 | 
						|
// Indexer represents a basic db indexer implementation
 | 
						|
type Indexer struct{}
 | 
						|
 | 
						|
// Init initializes the indexer
 | 
						|
func (i *Indexer) Init(_ context.Context) (bool, error) {
 | 
						|
	// Return true to indicate that the index was opened/existed.
 | 
						|
	// So that the indexer will not try to populate the index, the data is already there.
 | 
						|
	return true, nil
 | 
						|
}
 | 
						|
 | 
						|
// Ping checks if the indexer is available
 | 
						|
func (i *Indexer) Ping(_ context.Context) error {
 | 
						|
	// No need to ping database to check if it is available.
 | 
						|
	// If the database goes down, Gitea will go down, so nobody will care if the indexer is available.
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
// Close closes the indexer
 | 
						|
func (i *Indexer) Close() {
 | 
						|
	// nothing to do
 | 
						|
}
 |