{"id":28939,"date":"2015-10-26T16:31:34","date_gmt":"2015-10-26T11:01:34","guid":{"rendered":"https:\/\/2thenew.xyz\/blog\/?p=28939"},"modified":"2024-01-02T17:48:40","modified_gmt":"2024-01-02T12:18:40","slug":"hazelcast-integration-with-grails","status":"publish","type":"post","link":"https:\/\/2thenew.xyz\/blog\/hazelcast-integration-with-grails\/","title":{"rendered":"Getting started with Hazelcast using Grails in 10 minutes"},"content":{"rendered":"<p>In computing, Hazelcast is an open source in-memory data grid based on Java. This blog will help you to tune the performance of your Grails application using Hazelcast.<\/p>\n<h3>Integrating Hazelcast with Grails<\/h3>\n<p><strong>Step 1:<\/strong> Setup Hazelcast\u00a0server using server.sh (Packaged within Hazelcast zipped bundle):<\/p>\n<div style=\"margin-left: 50px\">\n<ul>\n<li>Download the Hazelcast .zip from this link http:\/\/hazelcast.org\/download\/<\/li>\n<li>Execute server.sh from hazelcast-&lt;version&gt;\/bin<\/li>\n<li>This will start Hazelcast\u00a0cluster.<\/li>\n<\/ul>\n<h3>You will see something like this when you execute server.sh.<\/h3>\n<div class=\"line number1 index0 alt2\"><code class=\"java plain\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-28980\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/10\/hazelcast.png\" alt=\"hazelcast\" width=\"534\" height=\"209\" \/>\\\u00a0<\/code><\/div>\n<p>Voila !! this is your first Hazelcast\u00a0cluster.<\/p>\n<\/div>\n<p><strong>Step 2: \u00a0<\/strong>Setting up Hazelcast client:<\/p>\n<div style=\"margin-left: 50px\">\n<ul>\n<li>Add dependency in your BuildConfig.groovy:<\/li>\n<\/ul>\n<p><code>compile(\"com.hazelcast:hazelcast-client:3.5.2\")<\/code><\/p>\n<ul>\n<li>Create a HazelcastClient.groovy file in your Grails application&#8217;s <code>~\/src\/groovy<\/code>:<\/li>\n<\/ul>\n<p><code>class HazelcastClient {<\/code><\/p>\n<p><code>private static HazelcastInstance _client<\/code><br \/>\n<code><br \/>\npublic static HazelcastInstance getClient() {<br \/>\nif (!(_client != null &amp;&amp; _client.getLifecycleService().isRunning()))<br \/>\n{<br \/>\nClientConfig clientConfig = new ClientConfig()<br \/>\nclientConfig.getNetworkConfig().addAddress(HAZELCAST SERVER URL)<br \/>\n_client = com.hazelcast.client.HazelcastClient.newHazelcastClient(clientConfig)<br \/>\n}<br \/>\nreturn _client<br \/>\n}<br \/>\n}<br \/>\n<\/code><br \/>\nThis <code>getClient()<\/code> method will create a Hazelcast client and connects to Hazelcast server in <code>HAZELCAST SERVER URL<\/code><\/p>\n<\/div>\n<p><strong>Step 3: \u00a0<\/strong>Populating data in Hazelcast:<\/p>\n<div style=\"margin-left: 50px\">\n<p><code>IMap&lt;Integer, String&gt; map=getClient().getMap(&lt;YOUR MAP NAME&gt;)<br \/>\nmap.put(1,\"BOB\")<br \/>\nmap.put(2,\"ROY\")<br \/>\n<\/code><\/p>\n<\/div>\n<p><strong>Step 4: \u00a0<\/strong>Fetching data from Hazelcast :<\/p>\n<div style=\"margin-left: 50px\">\n<p><code>IMap&lt;Integer, String&gt; map=getClient().getMap(&lt;YOUR MAP NAME&gt;)<br \/>\nmap.get(1) \/\/ \"BOB\"<br \/>\n<\/code><\/p>\n<\/div>\n<p>Hope this will help!!<\/p>\n<p>Also, there&#8217;s a lot about Grails 3.0 going the rounds in the Grails community, here&#8217;s a compilation of latest TOP 8 updates on Grails 3.0 &#8211;<\/p>\n<p><span id=\"hs-cta-wrapper-505049df-fcc7-41a6-a8fc-41c13216e267\" class=\"hs-cta-wrapper\"><span id=\"hs-cta-505049df-fcc7-41a6-a8fc-41c13216e267\" class=\"hs-cta-node hs-cta-505049df-fcc7-41a6-a8fc-41c13216e267\"> <a href=\"https:\/\/2thenew.xyz\/insights\"><img decoding=\"async\" id=\"hs-cta-img-505049df-fcc7-41a6-a8fc-41c13216e267\" class=\"hs-cta-img\" style=\"border-width: 0px\" src=\"https:\/\/no-cache.hubspot.com\/cta\/default\/481864\/505049df-fcc7-41a6-a8fc-41c13216e267.png\" alt=\"Grails 3.0\" \/><\/a><br \/>\n<\/span><\/span><\/p>\n<p>For more reference: visit\u00a0https:\/\/hazelcast.com\/<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In computing, Hazelcast is an open source in-memory data grid based on Java. This blog will help you to tune the performance of your Grails application using Hazelcast. Integrating Hazelcast with Grails Step 1: Setup Hazelcast\u00a0server using server.sh (Packaged within Hazelcast zipped bundle): Download the Hazelcast .zip from this link http:\/\/hazelcast.org\/download\/ Execute server.sh from hazelcast-&lt;version&gt;\/bin [&hellip;]<\/p>\n","protected":false},"author":421,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":10,"footnotes":""},"categories":[1],"tags":[2659,2660],"class_list":["post-28939","post","type-post","status-publish","format-standard","hentry","category-technology","tag-hazelcast","tag-hazelcast-with-grails"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"In computing, Hazelcast is an open source in-memory data grid based on Java. This blog will help you to tune the performance of your Grails application using Hazelcast. Integrating Hazelcast with Grails Step 1: Setup Hazelcast server using server.sh (Packaged within Hazelcast zipped bundle): Download the Hazelcast .zip from this link http:\/\/hazelcast.org\/download\/ Execute server.sh from hazelcast-\/bin\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Jeevesh Pandey\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.xyz\/blog\/hazelcast-integration-with-grails\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Getting started with Hazelcast using Grails in 10 minutes | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"In computing, Hazelcast is an open source in-memory data grid based on Java. This blog will help you to tune the performance of your Grails application using Hazelcast. Integrating Hazelcast with Grails Step 1: Setup Hazelcast server using server.sh (Packaged within Hazelcast zipped bundle): Download the Hazelcast .zip from this link http:\/\/hazelcast.org\/download\/ Execute server.sh from hazelcast-\/bin\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.xyz\/blog\/hazelcast-integration-with-grails\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Getting started with Hazelcast using Grails in 10 minutes | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In computing, Hazelcast is an open source in-memory data grid based on Java. This blog will help you to tune the performance of your Grails application using Hazelcast. Integrating Hazelcast with Grails Step 1: Setup Hazelcast server using server.sh (Packaged within Hazelcast zipped bundle): Download the Hazelcast .zip from this link http:\/\/hazelcast.org\/download\/ Execute server.sh from hazelcast-\/bin\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hazelcast-integration-with-grails\\\/#article\",\"name\":\"Getting started with Hazelcast using Grails in 10 minutes | TO THE NEW Blog\",\"headline\":\"Getting started with Hazelcast using Grails in 10 minutes\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/jeevesh-2\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2015\\\/10\\\/hazelcast.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hazelcast-integration-with-grails\\\/#articleImage\"},\"datePublished\":\"2015-10-26T16:31:34+05:30\",\"dateModified\":\"2024-01-02T17:48:40+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hazelcast-integration-with-grails\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hazelcast-integration-with-grails\\\/#webpage\"},\"articleSection\":\"Technology, Hazelcast, Hazelcast with Grails\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hazelcast-integration-with-grails\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hazelcast-integration-with-grails\\\/#listItem\",\"name\":\"Getting started with Hazelcast using Grails in 10 minutes\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hazelcast-integration-with-grails\\\/#listItem\",\"position\":3,\"name\":\"Getting started with Hazelcast using Grails in 10 minutes\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/jeevesh-2\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/jeevesh-2\\\/\",\"name\":\"Jeevesh Pandey\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hazelcast-integration-with-grails\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/9e61620a-d34d-4fee-a268-29a965c113bb_jeevesh.pandey@tothenew.com.jpg\",\"width\":96,\"height\":96,\"caption\":\"Jeevesh Pandey\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hazelcast-integration-with-grails\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hazelcast-integration-with-grails\\\/\",\"name\":\"Getting started with Hazelcast using Grails in 10 minutes | TO THE NEW Blog\",\"description\":\"In computing, Hazelcast is an open source in-memory data grid based on Java. This blog will help you to tune the performance of your Grails application using Hazelcast. Integrating Hazelcast with Grails Step 1: Setup Hazelcast server using server.sh (Packaged within Hazelcast zipped bundle): Download the Hazelcast .zip from this link http:\\\/\\\/hazelcast.org\\\/download\\\/ Execute server.sh from hazelcast-\\\/bin\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hazelcast-integration-with-grails\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/jeevesh-2\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/jeevesh-2\\\/#author\"},\"datePublished\":\"2015-10-26T16:31:34+05:30\",\"dateModified\":\"2024-01-02T17:48:40+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Getting started with Hazelcast using Grails in 10 minutes | TO THE NEW Blog","description":"In computing, Hazelcast is an open source in-memory data grid based on Java. This blog will help you to tune the performance of your Grails application using Hazelcast. Integrating Hazelcast with Grails Step 1: Setup Hazelcast server using server.sh (Packaged within Hazelcast zipped bundle): Download the Hazelcast .zip from this link http:\/\/hazelcast.org\/download\/ Execute server.sh from hazelcast-\/bin","canonical_url":"https:\/\/2thenew.xyz\/blog\/hazelcast-integration-with-grails\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.xyz\/blog\/hazelcast-integration-with-grails\/#article","name":"Getting started with Hazelcast using Grails in 10 minutes | TO THE NEW Blog","headline":"Getting started with Hazelcast using Grails in 10 minutes","author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/jeevesh-2\/#author"},"publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2015\/10\/hazelcast.png","@id":"https:\/\/2thenew.xyz\/blog\/hazelcast-integration-with-grails\/#articleImage"},"datePublished":"2015-10-26T16:31:34+05:30","dateModified":"2024-01-02T17:48:40+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.xyz\/blog\/hazelcast-integration-with-grails\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/hazelcast-integration-with-grails\/#webpage"},"articleSection":"Technology, Hazelcast, Hazelcast with Grails"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.xyz\/blog\/hazelcast-integration-with-grails\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.xyz\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.xyz\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/hazelcast-integration-with-grails\/#listItem","name":"Getting started with Hazelcast using Grails in 10 minutes"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/hazelcast-integration-with-grails\/#listItem","position":3,"name":"Getting started with Hazelcast using Grails in 10 minutes","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.xyz\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.xyz\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.xyz\/blog\/author\/jeevesh-2\/#author","url":"https:\/\/2thenew.xyz\/blog\/author\/jeevesh-2\/","name":"Jeevesh Pandey","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.xyz\/blog\/hazelcast-integration-with-grails\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/9e61620a-d34d-4fee-a268-29a965c113bb_jeevesh.pandey@tothenew.com.jpg","width":96,"height":96,"caption":"Jeevesh Pandey"}},{"@type":"WebPage","@id":"https:\/\/2thenew.xyz\/blog\/hazelcast-integration-with-grails\/#webpage","url":"https:\/\/2thenew.xyz\/blog\/hazelcast-integration-with-grails\/","name":"Getting started with Hazelcast using Grails in 10 minutes | TO THE NEW Blog","description":"In computing, Hazelcast is an open source in-memory data grid based on Java. This blog will help you to tune the performance of your Grails application using Hazelcast. Integrating Hazelcast with Grails Step 1: Setup Hazelcast server using server.sh (Packaged within Hazelcast zipped bundle): Download the Hazelcast .zip from this link http:\/\/hazelcast.org\/download\/ Execute server.sh from hazelcast-\/bin","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.xyz\/blog\/hazelcast-integration-with-grails\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/jeevesh-2\/#author"},"creator":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/jeevesh-2\/#author"},"datePublished":"2015-10-26T16:31:34+05:30","dateModified":"2024-01-02T17:48:40+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.xyz\/blog\/#website","url":"https:\/\/2thenew.xyz\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Getting started with Hazelcast using Grails in 10 minutes | TO THE NEW Blog","og:description":"In computing, Hazelcast is an open source in-memory data grid based on Java. This blog will help you to tune the performance of your Grails application using Hazelcast. Integrating Hazelcast with Grails Step 1: Setup Hazelcast server using server.sh (Packaged within Hazelcast zipped bundle): Download the Hazelcast .zip from this link http:\/\/hazelcast.org\/download\/ Execute server.sh from hazelcast-\/bin","og:url":"https:\/\/2thenew.xyz\/blog\/hazelcast-integration-with-grails\/","og:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Getting started with Hazelcast using Grails in 10 minutes | TO THE NEW Blog","twitter:description":"In computing, Hazelcast is an open source in-memory data grid based on Java. This blog will help you to tune the performance of your Grails application using Hazelcast. Integrating Hazelcast with Grails Step 1: Setup Hazelcast server using server.sh (Packaged within Hazelcast zipped bundle): Download the Hazelcast .zip from this link http:\/\/hazelcast.org\/download\/ Execute server.sh from hazelcast-\/bin","twitter:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"28939","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-30 06:38:00","updated":"2024-02-29 09:41:48","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tGetting started with Hazelcast using Grails in 10 minutes\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.xyz\/blog"},{"label":"Technology","link":"https:\/\/2thenew.xyz\/blog\/category\/technology\/"},{"label":"Getting started with Hazelcast using Grails in 10 minutes","link":"https:\/\/2thenew.xyz\/blog\/hazelcast-integration-with-grails\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/28939","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/users\/421"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/comments?post=28939"}],"version-history":[{"count":1,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/28939\/revisions"}],"predecessor-version":[{"id":59878,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/28939\/revisions\/59878"}],"wp:attachment":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/media?parent=28939"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/categories?post=28939"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/tags?post=28939"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}