Improve single schema cache (#7214)
* Initial Commit * fix flaky test * temporary set ci timeout * turn off ci check * fix postgres tests * fix tests * node flaky test * remove improvements * Update SchemaPerformance.spec.js * fix tests * revert ci * Create Singleton Object * properly clear cache testing * Cleanup * remove fit * try PushController.spec * try push test rewrite * try push enqueue time * Increase test timeout * remove pg server creation test * xit push tests * more xit * remove skipped tests * Fix conflicts * reduce ci timeout * fix push tests * Revert "fix push tests" This reverts commit 05aba62f1cbbca7d5d3e80b9444529f59407cb56. * improve initialization * fix flaky tests * xit flaky test * Update CHANGELOG.md * enable debug logs * Update LogsRouter.spec.js * create initial indexes in series * lint * horizontal scaling documentation * Update Changelog * change horizontalScaling db option * Add enableSchemaHooks option * move enableSchemaHooks to databaseOptions
This commit is contained in:
@@ -10,9 +10,7 @@ describe('ParseGraphQLSchema', () => {
|
||||
const appId = 'test';
|
||||
|
||||
beforeEach(async () => {
|
||||
parseServer = await global.reconfigureServer({
|
||||
schemaCacheTTL: 100,
|
||||
});
|
||||
parseServer = await global.reconfigureServer();
|
||||
databaseController = parseServer.config.databaseController;
|
||||
parseGraphQLController = parseServer.config.parseGraphQLController;
|
||||
parseGraphQLSchema = new ParseGraphQLSchema({
|
||||
@@ -68,7 +66,7 @@ describe('ParseGraphQLSchema', () => {
|
||||
const graphQLSubscriptions = parseGraphQLSchema.graphQLSubscriptions;
|
||||
const newClassObject = new Parse.Object('NewClass');
|
||||
await newClassObject.save();
|
||||
await databaseController.schemaCache.clear();
|
||||
await parseServer.config.schemaCache.clear();
|
||||
await new Promise(resolve => setTimeout(resolve, 200));
|
||||
await parseGraphQLSchema.load();
|
||||
expect(parseClasses).not.toBe(parseGraphQLSchema.parseClasses);
|
||||
@@ -426,14 +424,14 @@ describe('ParseGraphQLSchema', () => {
|
||||
log: defaultLogger,
|
||||
appId,
|
||||
});
|
||||
await parseGraphQLSchema.databaseController.schemaCache.clear();
|
||||
await parseGraphQLSchema.schemaCache.clear();
|
||||
const schema1 = await parseGraphQLSchema.load();
|
||||
const types1 = parseGraphQLSchema.graphQLTypes;
|
||||
const queries1 = parseGraphQLSchema.graphQLQueries;
|
||||
const mutations1 = parseGraphQLSchema.graphQLMutations;
|
||||
const user = new Parse.Object('User');
|
||||
await user.save();
|
||||
await parseGraphQLSchema.databaseController.schemaCache.clear();
|
||||
await parseGraphQLSchema.schemaCache.clear();
|
||||
const schema2 = await parseGraphQLSchema.load();
|
||||
const types2 = parseGraphQLSchema.graphQLTypes;
|
||||
const queries2 = parseGraphQLSchema.graphQLQueries;
|
||||
@@ -456,14 +454,14 @@ describe('ParseGraphQLSchema', () => {
|
||||
});
|
||||
const car1 = new Parse.Object('Car');
|
||||
await car1.save();
|
||||
await parseGraphQLSchema.databaseController.schemaCache.clear();
|
||||
await parseGraphQLSchema.schemaCache.clear();
|
||||
const schema1 = await parseGraphQLSchema.load();
|
||||
const types1 = parseGraphQLSchema.graphQLTypes;
|
||||
const queries1 = parseGraphQLSchema.graphQLQueries;
|
||||
const mutations1 = parseGraphQLSchema.graphQLMutations;
|
||||
const car2 = new Parse.Object('car');
|
||||
await car2.save();
|
||||
await parseGraphQLSchema.databaseController.schemaCache.clear();
|
||||
await parseGraphQLSchema.schemaCache.clear();
|
||||
const schema2 = await parseGraphQLSchema.load();
|
||||
const types2 = parseGraphQLSchema.graphQLTypes;
|
||||
const queries2 = parseGraphQLSchema.graphQLQueries;
|
||||
@@ -486,13 +484,13 @@ describe('ParseGraphQLSchema', () => {
|
||||
});
|
||||
const car = new Parse.Object('Car');
|
||||
await car.save();
|
||||
await parseGraphQLSchema.databaseController.schemaCache.clear();
|
||||
await parseGraphQLSchema.schemaCache.clear();
|
||||
const schema1 = await parseGraphQLSchema.load();
|
||||
const queries1 = parseGraphQLSchema.graphQLQueries;
|
||||
const mutations1 = parseGraphQLSchema.graphQLMutations;
|
||||
const cars = new Parse.Object('cars');
|
||||
await cars.save();
|
||||
await parseGraphQLSchema.databaseController.schemaCache.clear();
|
||||
await parseGraphQLSchema.schemaCache.clear();
|
||||
const schema2 = await parseGraphQLSchema.load();
|
||||
const queries2 = parseGraphQLSchema.graphQLQueries;
|
||||
const mutations2 = parseGraphQLSchema.graphQLMutations;
|
||||
@@ -532,7 +530,7 @@ describe('ParseGraphQLSchema', () => {
|
||||
|
||||
await data.save();
|
||||
|
||||
await parseGraphQLSchema.databaseController.schemaCache.clear();
|
||||
await parseGraphQLSchema.schemaCache.clear();
|
||||
await parseGraphQLSchema.load();
|
||||
|
||||
const queries1 = parseGraphQLSchema.graphQLQueries;
|
||||
@@ -569,7 +567,7 @@ describe('ParseGraphQLSchema', () => {
|
||||
|
||||
await data.save();
|
||||
|
||||
await parseGraphQLSchema.databaseController.schemaCache.clear();
|
||||
await parseGraphQLSchema.schemaCache.clear();
|
||||
await parseGraphQLSchema.load();
|
||||
|
||||
const mutations = parseGraphQLSchema.graphQLMutations;
|
||||
|
||||
Reference in New Issue
Block a user