简体   繁体   中英

Neo4j - database shutdown

I am using Neo4j embedded in my Scala project. I have been including

ShutdownHookThread {
    shutdown(ds)
    }

the above piece of code in each and every function before the beginning of transaction. Do I need to include it in every function. What happens if I don't include it?

ShutdownHookThread registers a piece of code to be executed when your application is about to exit. You need to use it only once - somewhere in your app bootstrap code, cause there is no sense to shutdown the database more than one time.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM