December 2014 Summaries
7 posts from Neo4j
Filter
Month:
Year:
Post Summaries
Back to Blog
The RNeo4j package has been updated with several new functions, including `getPaths`, which allows the retrieval of path objects with a Cypher query. The `nodes` and `rels` functions extract node and relationship objects from a path object. The `shortestPath` and `allShortestPaths` functions find a single shortest path or all shortest paths between two nodes, respectively. Additionally, the package includes sample datasets that can be imported into Neo4j to quickly explore its capabilities. Users can also open the Neo4j browser in RStudio's viewer pane with the new "browse" function and set custom HTTP options using the `startGraph` function. The package encourages contributions by submitting pull requests to the GitHub repository, allowing users to extend its functionality and capabilities.
Dec 27, 2014
877 words in the original blog post.
The RNeo4j package has been updated with several new functions, including `getPaths`, which retrieves a list of path objects with a Cypher query. The `nodes` function extracts the node objects from a path object, and the `rels` function extracts the relationship objects. Two new functions, `shortestPath` and `allShortestPaths`, find a single shortest path or all shortest paths between two node objects, respectively. The package also includes additional sample datasets that can be imported into Neo4j, allowing users to quickly begin exploring its capabilities. Furthermore, pull requests have been added to allow users to open the Neo4j browser in RStudio's viewer pane and set custom HTTP options, making it easier to interact with the database.
Dec 27, 2014
877 words in the original blog post.
Rik Van Bruggen presented a meetup on prototyping a graph database in Amsterdam, where attendees aimed to quickly and efficiently prototype a graph database. He emphasized the importance of modeling principles similar to classical use story modeling, considering use cases and query patterns to drive the model. The model should not be afraid of normalisation or redundancy, as it is common to have multiple ways to model relationships. A prototype dataset was generated using GraphGen, which allowed attendees to quickly populate a Neo4j database with sample data. To explore the dataset, indexes were added for efficient queries, and attendees performed traversals starting from different nodes in the graph, such as hardware or users, to answer questions about queryability and data relationships.
Dec 19, 2014
590 words in the original blog post.
The RNeo4j package allows users to interact with a Neo4j database from within the R environment, enabling quick and easy data exploration. Recent updates include functionality for retrieving and handling paths, as well as community contributions such as opening the Neo4j browser in RStudio's viewer pane and setting custom HTTP options. The `getPaths` function retrieves a list of path objects with a Cypher query, while `nodes` extracts node objects from a path object. Additionally, `rels` extracts relationship objects, and `shortestPath` and `allShortestPaths` find the shortest or all shortest paths between two nodes, respectively. The package also includes sample datasets that can be imported for quick exploration, such as the Twitter dataset. Furthermore, users can set custom HTTP options to improve performance, including setting a timeout value. Overall, RNeo4j provides a powerful tool for working with graph databases from within R.
Dec 17, 2014
1,057 words in the original blog post.
The text appears to be a collection of articles, tutorials, and use cases related to Neo4j, a graph database management system. Topics include the relevancy of recent knowledge, big data analytics, graph analysis, and software technologies, as well as how-to guides for using Neo4j with various programming languages and tools, such as Python, PHP, and Docker. The articles also touch on real-world use cases, including social media platforms like Wikipedia and Medium, as well as recruiting processes in the tech industry. Additionally, there is a mention of an ebook that can be downloaded.
Dec 09, 2014
223 words in the original blog post.
AWS has introduced new software competencies for its various services, including Neo4j Graph Database, which offers a fully-managed graph database as a service called Neo4j AuraDB. This service provides deployment options such as self or fully-managed, deploy anywhere. Additionally, Neo4j Graph Data Science is available, offering graph analytics and modeling platforms. The platform also includes the Deployment Center for easy integration and deployment. Furthermore, Neo4j offers Generative AI capabilities, enabling developers to back their Large Language Models (LLMs) with a Knowledge Graph for better business AI insights. Various industries and use cases are supported by Neo4j, including fraud detection, financial services, and more. The platform also features customer success stories, developer resources such as the GraphAcademy offering free online courses and certifications, and an online conference series that brings together data and business trailblazers from around the world.
Dec 06, 2014
167 words in the original blog post.
Neo4j 2.2 is the latest release from Neo Technology, aiming to be the fastest and most scalable version yet. The new page cache delivers extreme performance and scalability under highly concurrent workloads, while transactional and batch write performance have been significantly improved through enhancements such as coordination of commits between Lucene, the graph, and the transaction log. A cost-based optimizer for Cypher has also been introduced, allowing queries to determine optimal plans based on statistics about the data set. Additionally, token-based authentication is enabled by default in Neo4j 2.2 M, while some features like neo4j-import are available from the command line. The release includes various UI improvements and is intended for testing purposes only, with feedback encouraged through the Neo4j Google Group or direct email to `[email protected]`.
Dec 03, 2014
797 words in the original blog post.