Last active
October 15, 2019 07:59
-
-
Save kijanowski/916c9e699a1800eede0e7804e6af47e5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ java -jar build/libs/graphql-springboot-scope-0.0.1-SNAPSHOT.jar --spring.profiles.active=global | |
| :: Spring Boot :: (v2.1.8.RELEASE) | |
| 2019-09-30 18:09:32.476 INFO 48278 --- [ main] graphqlscope.graphql.GraphqlApplication : Starting GraphqlApplication on winter with PID 48278 | |
| 2019-09-30 18:09:32.479 INFO 48278 --- [ main] graphqlscope.graphql.GraphqlApplication : The following profiles are active: global | |
| 2019-09-30 18:09:33.641 INFO 48278 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8081 (http) | |
| 2019-09-30 18:09:33.684 INFO 48278 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat] | |
| 2019-09-30 18:09:33.684 INFO 48278 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.24] | |
| 2019-09-30 18:09:33.795 INFO 48278 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext | |
| 2019-09-30 18:09:33.795 INFO 48278 --- [ main] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1267 ms | |
| 2019-09-30 18:09:34.308 INFO 48278 --- [ main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' | |
| 2019-09-30 18:09:34.548 INFO 48278 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8081 (http) with context path '' | |
| 2019-09-30 18:09:34.553 INFO 48278 --- [ main] graphqlscope.graphql.GraphqlApplication : Started GraphqlApplication in 2.638 seconds (JVM running for 3.101) | |
| 2019-09-30 18:09:44.359 INFO 48278 --- [nio-8081-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet' | |
| 2019-09-30 18:09:44.359 INFO 48278 --- [nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet' | |
| 2019-09-30 18:09:44.367 INFO 48278 --- [nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 8 ms | |
| -----------------> query for all animals | |
| { | |
| animals { | |
| name | |
| color | |
| countryIds | |
| countries { | |
| name | |
| } | |
| } | |
| } | |
| ----------------- | |
| 2019-09-30 18:09:44.591 INFO 48278 --- [nio-8081-exec-1] g.graphql.GraphQLDataFetchers : Returning 2 animals. | |
| 2019-09-30 18:09:44.618 INFO 48278 --- [onPool-worker-3] g.graphql.GraphQLDataFetchers : Returning 3 countries. | |
| -----------------> query again for all animals | |
| 2019-09-30 18:09:51.593 INFO 48278 --- [nio-8081-exec-2] g.graphql.GraphQLDataFetchers : Returning 2 animals. | |
| -----------------> query again for all animals, after cache got expired | |
| 2019-09-30 18:10:07.304 INFO 48278 --- [nio-8081-exec-6] g.graphql.GraphQLDataFetchers : Returning 2 animals. | |
| 2019-09-30 18:10:07.307 INFO 48278 --- [nio-8081-exec-6] g.graphql.CustomGuavaBasedCache : Key A got removed, because: EXPIRED | |
| 2019-09-30 18:10:07.308 INFO 48278 --- [nio-8081-exec-6] g.graphql.CustomGuavaBasedCache : Key B got removed, because: EXPIRED | |
| 2019-09-30 18:10:07.308 INFO 48278 --- [nio-8081-exec-6] g.graphql.CustomGuavaBasedCache : Key C got removed, because: EXPIRED | |
| 2019-09-30 18:10:07.309 INFO 48278 --- [onPool-worker-3] g.graphql.GraphQLDataFetchers : Returning 3 countries. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment