{"id":18590,"date":"2013-11-01T01:39:07","date_gmt":"2013-10-31T23:39:07","guid":{"rendered":"http:\/\/www.javacodegeeks.com\/?p=18590"},"modified":"2013-11-01T01:39:07","modified_gmt":"2013-10-31T23:39:07","slug":"using-sorted-sets-with-jedis-api","status":"publish","type":"post","link":"https:\/\/www.javacodegeeks.com\/2013\/11\/using-sorted-sets-with-jedis-api.html","title":{"rendered":"Using Sorted Sets with Jedis API"},"content":{"rendered":"<p>In the previous post we started looking into Jedis API a Java Redis Client. In this post we will look into the Sorted Set(zsets).<\/p>\n<p>Sorted Set works like a Set in the way it doesn\u2019t allow duplicated values. The big difference\u00a0is that in Sorted Set each element has a score in order to keep the elements sorted.<\/p>\n<p>We can see some \u00a0commands below:<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<\/p>\n<pre class=\" brush:java\">import java.util.HashMap;\r\nimport java.util.Map;\r\n\r\nimport redis.clients.jedis.Jedis;\r\npublic class TestJedis {\r\n\r\npublic static void main(String[] args) {\r\n String key = \"mostUsedLanguages\";\r\n Jedis jedis = new Jedis(\"localhost\");\r\n \/\/Adding a value with score to the set\r\n jedis.zadd(key,100,\"Java\");\/\/ZADD\r\n\r\n \/\/We could add more than one value in one calling\r\n Map&lt;Double, String&gt; scoreMembers = new HashMap&lt;Double, String&gt;();\r\n scoreMembers.put(90d, \"Python\");\r\n scoreMembers.put(80d, \"Javascript\");\r\n jedis.zadd(key, scoreMembers);\r\n\r\n \/\/We could get the score for a member\r\n System.out.println(\"Number of Java users:\" + jedis.zscore(key, \"Java\"));\r\n\r\n \/\/We could get the number of elements on the set\r\n System.out.println(\"Number of elements:\" + jedis.zcard(key));\/\/ZCARD\r\n }\r\n}<\/pre>\n<p>In the example above we saw some Zset commands. To add elements to the zet we set the\u00a0<em>zadd<\/em> method, the difference for the sets is that we pass also the score for the element.\u00a0There is a overloaded version that we can pass many values using a map. The <em>zadd<\/em> could be\u00a0used for both add and update the score for an existing element.<div style=\"display:inline-block; margin: 15px 0;\"> <div id=\"adngin-JavaCodeGeeks_incontent_video-0\" style=\"display:inline-block;\"><\/div> <\/div><\/p>\n<p>We can get a score for a given element with the <em>zscore<\/em> and the number of elements using the\u00a0<em>zcard<\/em> command.<\/p>\n<p>Below we can see other commands from zsets:<\/p>\n<pre class=\" brush:java\">import java.util.Set;\r\n\r\nimport redis.clients.jedis.Jedis;\r\nimport redis.clients.jedis.Tuple;\r\npublic class TestJedis {\r\n\r\npublic static void main(String[] args) {\r\n String key = \"mostUsedLanguages\";\r\n Jedis jedis = new Jedis(\"localhost\");\r\n\r\n \/\/get all the elements sorted from bottom to top\r\n System.out.println(jedis.zrange(key, 0, -1));\r\n\r\n \/\/get all the elements sorted from top to bottom\r\n System.out.println(jedis.zrevrange(key, 0, -1));\r\n \/\/We could get the elements with the associated score\r\n Set&lt;Tuple&gt; elements = jedis.zrevrangeWithScores(key, 0, -1);\r\n for(Tuple tuple: elements){\r\n System.out.println(tuple.getElement() + \"-\" + tuple.getScore());\r\n }\r\n\r\n \/\/We can increment a score for a element using ZINCRBY\r\n System.out.println(\"Score before zincrby:\" + jedis.zscore(key, \"Python\"));\r\n \/\/Incrementing the element score\r\n jedis.zincrby(key, 1, \"Python\");\r\n System.out.println(\"Score after zincrby:\" + jedis.zscore(key, \"Python\"));\r\n }\r\n}<\/pre>\n<p>With the <em>zrange<\/em> we can get the elements for the given range. It returns the elements sorted\u00a0from bottom to top. We can get the elements from top to bottom using the method <em>zrevrrange<\/em>.\u00a0Redis also allow us to get the elements with the associated scores. In redis we pass the option \u201c<em>withscores<\/em>\u201c.\u00a0With Jedis API we use the method <em>zrevrangeWithScores<\/em> that returns a Set of Tuple objects. Other useful command\u00a0is \u00a0<em>zincrby<\/em> that we can increment the score for a member in the set.<\/p>\n<p>There are other commands for zsets, this post was intended only to show some basical usage with Jedis API. We can find a good use case for sorted sets in this <a href=\"http:\/\/www.paperplanes.de\/2010\/11\/29\/a_simple_redis_use_case.html\" target=\"_blank\">post<\/a>.<\/p>\n<p>See you in the next post.<br \/>\n&nbsp;<\/p>\n<div style=\"border: 1px solid #D8D8D8; background: #FAFAFA; width: 100%; padding-left: 5px;\"><b><i>Reference: <\/i><\/b><a href=\"http:\/\/xicojunior.wordpress.com\/2012\/07\/10\/using-sorted-sets-with-jedis-api\/\">Using Sorted Sets with Jedis API<\/a> from our <a href=\"http:\/\/www.javacodegeeks.com\/jcg\">JCG partner<\/a> Francisco Ribeiro Junior at the <a href=\"http:\/\/xicojunior.wordpress.com\/\">XICO JUNIOR&#8217;S WEBLOG<\/a> blog.<\/div>\n","protected":false},"excerpt":{"rendered":"<p>In the previous post we started looking into Jedis API a Java Redis Client. In this post we will look into the Sorted Set(zsets). Sorted Set works like a Set in the way it doesn\u2019t allow duplicated values. The big difference\u00a0is that in Sorted Set each element has a score in order to keep the &hellip;<\/p>\n","protected":false},"author":504,"featured_media":223,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[875,113,117],"class_list":["post-18590","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-enterprise-java","tag-jedis","tag-nosql","tag-redis"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Using Sorted Sets with Jedis API<\/title>\n<meta name=\"description\" content=\"In the previous post we started looking into Jedis API a Java Redis Client. In this post we will look into the Sorted Set(zsets). Sorted Set works like a\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.javacodegeeks.com\/2013\/11\/using-sorted-sets-with-jedis-api.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using Sorted Sets with Jedis API\" \/>\n<meta property=\"og:description\" content=\"In the previous post we started looking into Jedis API a Java Redis Client. In this post we will look into the Sorted Set(zsets). Sorted Set works like a\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.javacodegeeks.com\/2013\/11\/using-sorted-sets-with-jedis-api.html\" \/>\n<meta property=\"og:site_name\" content=\"Java Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/javacodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2013-10-31T23:39:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/redis-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Francisco Ribeiro Junior\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@http:\/\/twitter.com\/fjunior87\" \/>\n<meta name=\"twitter:site\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Francisco Ribeiro Junior\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/11\\\/using-sorted-sets-with-jedis-api.html#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/11\\\/using-sorted-sets-with-jedis-api.html\"},\"author\":{\"name\":\"Francisco Ribeiro Junior\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/person\\\/4bfab535e166a1d3c2dc3f199731682c\"},\"headline\":\"Using Sorted Sets with Jedis API\",\"datePublished\":\"2013-10-31T23:39:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/11\\\/using-sorted-sets-with-jedis-api.html\"},\"wordCount\":314,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/11\\\/using-sorted-sets-with-jedis-api.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/redis-logo.jpg\",\"keywords\":[\"Jedis\",\"NoSQL\",\"Redis\"],\"articleSection\":[\"Enterprise Java\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/11\\\/using-sorted-sets-with-jedis-api.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/11\\\/using-sorted-sets-with-jedis-api.html\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/11\\\/using-sorted-sets-with-jedis-api.html\",\"name\":\"Using Sorted Sets with Jedis API\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/11\\\/using-sorted-sets-with-jedis-api.html#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/11\\\/using-sorted-sets-with-jedis-api.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/redis-logo.jpg\",\"datePublished\":\"2013-10-31T23:39:07+00:00\",\"description\":\"In the previous post we started looking into Jedis API a Java Redis Client. In this post we will look into the Sorted Set(zsets). Sorted Set works like a\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/11\\\/using-sorted-sets-with-jedis-api.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/11\\\/using-sorted-sets-with-jedis-api.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/11\\\/using-sorted-sets-with-jedis-api.html#primaryimage\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/redis-logo.jpg\",\"contentUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/redis-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/11\\\/using-sorted-sets-with-jedis-api.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java\",\"item\":\"https:\\\/\\\/www.javacodegeeks.com\\\/category\\\/java\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Enterprise Java\",\"item\":\"https:\\\/\\\/www.javacodegeeks.com\\\/category\\\/java\\\/enterprise-java\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Using Sorted Sets with Jedis API\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#website\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\",\"name\":\"Java Code Geeks\",\"description\":\"Java Developers Resource Center\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\"},\"alternateName\":\"JCG\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.javacodegeeks.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/exelixis-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/javacodegeeks\",\"https:\\\/\\\/x.com\\\/javacodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/person\\\/4bfab535e166a1d3c2dc3f199731682c\",\"name\":\"Francisco Ribeiro Junior\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/125ace9741774794eb230010f4a4419f2eb9bbee3b33c041e0c7f445e9663bfc?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/125ace9741774794eb230010f4a4419f2eb9bbee3b33c041e0c7f445e9663bfc?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/125ace9741774794eb230010f4a4419f2eb9bbee3b33c041e0c7f445e9663bfc?s=96&d=mm&r=g\",\"caption\":\"Francisco Ribeiro Junior\"},\"description\":\"Francisco is a senior software engineer working in the telecom\\\/banking domain focused on Web Content Management. He has been technical lead on many projects for different Brazilian and worldwide clients.\",\"sameAs\":[\"http:\\\/\\\/xicojunior.wordpress.com\\\/\",\"http:\\\/\\\/br.linkedin.com\\\/in\\\/fribeiro\\\/\",\"https:\\\/\\\/x.com\\\/http:\\\/\\\/twitter.com\\\/fjunior87\"],\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/author\\\/francisco-ribeiro-junior\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Using Sorted Sets with Jedis API","description":"In the previous post we started looking into Jedis API a Java Redis Client. In this post we will look into the Sorted Set(zsets). Sorted Set works like a","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.javacodegeeks.com\/2013\/11\/using-sorted-sets-with-jedis-api.html","og_locale":"en_US","og_type":"article","og_title":"Using Sorted Sets with Jedis API","og_description":"In the previous post we started looking into Jedis API a Java Redis Client. In this post we will look into the Sorted Set(zsets). Sorted Set works like a","og_url":"https:\/\/www.javacodegeeks.com\/2013\/11\/using-sorted-sets-with-jedis-api.html","og_site_name":"Java Code Geeks","article_publisher":"https:\/\/www.facebook.com\/javacodegeeks","article_published_time":"2013-10-31T23:39:07+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/redis-logo.jpg","type":"image\/jpeg"}],"author":"Francisco Ribeiro Junior","twitter_card":"summary_large_image","twitter_creator":"@http:\/\/twitter.com\/fjunior87","twitter_site":"@javacodegeeks","twitter_misc":{"Written by":"Francisco Ribeiro Junior","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.javacodegeeks.com\/2013\/11\/using-sorted-sets-with-jedis-api.html#article","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/2013\/11\/using-sorted-sets-with-jedis-api.html"},"author":{"name":"Francisco Ribeiro Junior","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/person\/4bfab535e166a1d3c2dc3f199731682c"},"headline":"Using Sorted Sets with Jedis API","datePublished":"2013-10-31T23:39:07+00:00","mainEntityOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/2013\/11\/using-sorted-sets-with-jedis-api.html"},"wordCount":314,"commentCount":0,"publisher":{"@id":"https:\/\/www.javacodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/2013\/11\/using-sorted-sets-with-jedis-api.html#primaryimage"},"thumbnailUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/redis-logo.jpg","keywords":["Jedis","NoSQL","Redis"],"articleSection":["Enterprise Java"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.javacodegeeks.com\/2013\/11\/using-sorted-sets-with-jedis-api.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.javacodegeeks.com\/2013\/11\/using-sorted-sets-with-jedis-api.html","url":"https:\/\/www.javacodegeeks.com\/2013\/11\/using-sorted-sets-with-jedis-api.html","name":"Using Sorted Sets with Jedis API","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/2013\/11\/using-sorted-sets-with-jedis-api.html#primaryimage"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/2013\/11\/using-sorted-sets-with-jedis-api.html#primaryimage"},"thumbnailUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/redis-logo.jpg","datePublished":"2013-10-31T23:39:07+00:00","description":"In the previous post we started looking into Jedis API a Java Redis Client. In this post we will look into the Sorted Set(zsets). Sorted Set works like a","breadcrumb":{"@id":"https:\/\/www.javacodegeeks.com\/2013\/11\/using-sorted-sets-with-jedis-api.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.javacodegeeks.com\/2013\/11\/using-sorted-sets-with-jedis-api.html"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.javacodegeeks.com\/2013\/11\/using-sorted-sets-with-jedis-api.html#primaryimage","url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/redis-logo.jpg","contentUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/redis-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.javacodegeeks.com\/2013\/11\/using-sorted-sets-with-jedis-api.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.javacodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Java","item":"https:\/\/www.javacodegeeks.com\/category\/java"},{"@type":"ListItem","position":3,"name":"Enterprise Java","item":"https:\/\/www.javacodegeeks.com\/category\/java\/enterprise-java"},{"@type":"ListItem","position":4,"name":"Using Sorted Sets with Jedis API"}]},{"@type":"WebSite","@id":"https:\/\/www.javacodegeeks.com\/#website","url":"https:\/\/www.javacodegeeks.com\/","name":"Java Code Geeks","description":"Java Developers Resource Center","publisher":{"@id":"https:\/\/www.javacodegeeks.com\/#organization"},"alternateName":"JCG","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.javacodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.javacodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.javacodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/javacodegeeks","https:\/\/x.com\/javacodegeeks"]},{"@type":"Person","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/person\/4bfab535e166a1d3c2dc3f199731682c","name":"Francisco Ribeiro Junior","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/125ace9741774794eb230010f4a4419f2eb9bbee3b33c041e0c7f445e9663bfc?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/125ace9741774794eb230010f4a4419f2eb9bbee3b33c041e0c7f445e9663bfc?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/125ace9741774794eb230010f4a4419f2eb9bbee3b33c041e0c7f445e9663bfc?s=96&d=mm&r=g","caption":"Francisco Ribeiro Junior"},"description":"Francisco is a senior software engineer working in the telecom\/banking domain focused on Web Content Management. He has been technical lead on many projects for different Brazilian and worldwide clients.","sameAs":["http:\/\/xicojunior.wordpress.com\/","http:\/\/br.linkedin.com\/in\/fribeiro\/","https:\/\/x.com\/http:\/\/twitter.com\/fjunior87"],"url":"https:\/\/www.javacodegeeks.com\/author\/francisco-ribeiro-junior"}]}},"_links":{"self":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/18590","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/users\/504"}],"replies":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/comments?post=18590"}],"version-history":[{"count":0,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/18590\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media\/223"}],"wp:attachment":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media?parent=18590"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/categories?post=18590"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/tags?post=18590"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}