mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 23:14:13 +00:00 
			
		
		
		
	upd: increase default cache max values
This commit is contained in:
		
							parent
							
								
									d14b9af93d
								
							
						
					
					
						commit
						b002848b20
					
				
					 2 changed files with 7 additions and 7 deletions
				
			
		| 
						 | 
				
			
			@ -7,10 +7,10 @@ export class MetaCacheSettings1696373953614 {
 | 
			
		|||
    name = 'MetaCacheSettings1696373953614'
 | 
			
		||||
 | 
			
		||||
    async up(queryRunner) {
 | 
			
		||||
        await queryRunner.query(`ALTER TABLE "meta" ADD "perLocalUserUserTimelineCacheMax" integer NOT NULL DEFAULT '300'`);
 | 
			
		||||
        await queryRunner.query(`ALTER TABLE "meta" ADD "perRemoteUserUserTimelineCacheMax" integer NOT NULL DEFAULT '100'`);
 | 
			
		||||
        await queryRunner.query(`ALTER TABLE "meta" ADD "perUserHomeTimelineCacheMax" integer NOT NULL DEFAULT '300'`);
 | 
			
		||||
        await queryRunner.query(`ALTER TABLE "meta" ADD "perUserListTimelineCacheMax" integer NOT NULL DEFAULT '300'`);
 | 
			
		||||
        await queryRunner.query(`ALTER TABLE "meta" ADD "perLocalUserUserTimelineCacheMax" integer NOT NULL DEFAULT '800'`);
 | 
			
		||||
        await queryRunner.query(`ALTER TABLE "meta" ADD "perRemoteUserUserTimelineCacheMax" integer NOT NULL DEFAULT '800'`);
 | 
			
		||||
        await queryRunner.query(`ALTER TABLE "meta" ADD "perUserHomeTimelineCacheMax" integer NOT NULL DEFAULT '800'`);
 | 
			
		||||
        await queryRunner.query(`ALTER TABLE "meta" ADD "perUserListTimelineCacheMax" integer NOT NULL DEFAULT '800'`);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    async down(queryRunner) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -92,9 +92,9 @@ describe('ActivityPub', () => {
 | 
			
		|||
	const metaInitial = {
 | 
			
		||||
		cacheRemoteFiles: true,
 | 
			
		||||
		cacheRemoteSensitiveFiles: true,
 | 
			
		||||
		perUserHomeTimelineCacheMax: 100,
 | 
			
		||||
		perLocalUserUserTimelineCacheMax: 100,
 | 
			
		||||
		perRemoteUserUserTimelineCacheMax: 100,
 | 
			
		||||
		perUserHomeTimelineCacheMax: 800,
 | 
			
		||||
		perLocalUserUserTimelineCacheMax: 800,
 | 
			
		||||
		perRemoteUserUserTimelineCacheMax: 800,
 | 
			
		||||
		blockedHosts: [] as string[],
 | 
			
		||||
		sensitiveWords: [] as string[],
 | 
			
		||||
	} as MiMeta;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue