Book Image

Learning Neo4j

By : Rik Van Bruggen
Book Image

Learning Neo4j

By: Rik Van Bruggen

Overview of this book

Table of Contents (18 chapters)
Learning Neo4j
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Where to Find More Information Related to Neo4j
Index

Questions and answers


Q1. Neo4j comes with a single, universal data import toolset that will allow you to import any of your datasets, small or large.

  1. True

  2. False

Answer: False. Importing data into a graph database will require you to think about your import use case and then choose the right tool for the job. Luckily, Neo4j comes with a number of different options that you can choose from.

Q2. Which data formats can you import into Neo4j?

  1. Spreadsheets

  2. CSV or TSV files

  3. GEOFF or GraphML files

  4. All of the above

Answer: All of the above. Different tools will allow you to import different formats more or less easily, but all are possible without a doubt.

Q3. The Neo4j batch importer is much faster than any of the other import technologies presented because:

  1. It was written in C++ instead of Java

  2. It does not write to a running transactional instance of Neo4j and can therefore run un-transactionally

  3. It has fewer bugs, which allows it to run faster

  4. It uses fancy caching technologies to make it write faster

Answer...