mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			611 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			611 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Emby.Server.Implementations.Data;
 | |
| 
 | |
| /// <summary>
 | |
| /// Storage mode used by temporary database files.
 | |
| /// </summary>
 | |
| public enum TempStoreMode
 | |
| {
 | |
|     /// <summary>
 | |
|     /// The compile-time C preprocessor macro SQLITE_TEMP_STORE
 | |
|     /// is used to determine where temporary tables and indices are stored.
 | |
|     /// </summary>
 | |
|     Default = 0,
 | |
| 
 | |
|     /// <summary>
 | |
|     /// Temporary tables and indices are stored in a file.
 | |
|     /// </summary>
 | |
|     File = 1,
 | |
| 
 | |
|     /// <summary>
 | |
|     /// Temporary tables and indices are kept in as if they were pure in-memory databases memory.
 | |
|     /// </summary>
 | |
|     Memory = 2
 | |
| }
 |