<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Burak Sezer</title>
    <description>The latest articles on DEV Community by Burak Sezer (@buraksez3r).</description>
    <link>https://dev.to/buraksez3r</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F397769%2Fafe16f12-90f9-4520-a04e-59a2d523a278.jpg</url>
      <title>DEV Community: Burak Sezer</title>
      <link>https://dev.to/buraksez3r</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/buraksez3r"/>
    <language>en</language>
    <item>
      <title>Olric: Distributed cache and in-memory key/value data store. Embedded or language independent service.</title>
      <dc:creator>Burak Sezer</dc:creator>
      <pubDate>Wed, 22 Jul 2020 22:02:55 +0000</pubDate>
      <link>https://dev.to/buraksez3r/olric-distributed-cache-and-in-memory-key-value-data-store-embedded-or-language-independent-service-24d3</link>
      <guid>https://dev.to/buraksez3r/olric-distributed-cache-and-in-memory-key-value-data-store-embedded-or-language-independent-service-24d3</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is Olric?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Distributed cache and in-memory key/value data store in Go. It can be used both as an embedded Go library and as a language-independent service.&lt;/p&gt;

&lt;p&gt;With Olric, you can instantly create a fast, scalable, shared pool of RAM across a cluster of computers.&lt;/p&gt;

&lt;p&gt;Basic features:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Designed to share some transient, approximate, fast-changing data between servers,&lt;/li&gt;
&lt;li&gt;Embeddable but can be used as a language-independent service with olricd,&lt;/li&gt;
&lt;li&gt;Supports different eviction algorithms,&lt;/li&gt;
&lt;li&gt;Fast binary protocol,&lt;/li&gt;
&lt;li&gt;Highly available and horizontally scalable,&lt;/li&gt;
&lt;li&gt;Provides best-effort consistency guarantees without being a complete CP (indeed PA/EC) solution,&lt;/li&gt;
&lt;li&gt;Supports replication by default (with sync and async options),&lt;/li&gt;
&lt;li&gt;Quorum-based voting for replica control (Read/Write quorums),&lt;/li&gt;
&lt;li&gt;Supports atomic operations,&lt;/li&gt;
&lt;li&gt;Supports distributed queries on keys,&lt;/li&gt;
&lt;li&gt;Provides a plugin interface for service discovery daemons,&lt;/li&gt;
&lt;li&gt;Provides a locking primitive which inspired by SETNX of Redis.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;See installation docs: [&lt;a href="https://github.com/buraksezer/olric#installing"&gt;https://github.com/buraksezer/olric#installing&lt;/a&gt;]&lt;/p&gt;

&lt;p&gt;See how to use distributed maps in your application: &lt;a href="https://github.com/buraksezer/olric#sample-code"&gt;https://github.com/buraksezer/olric#sample-code&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For more info, please take a look at GitHub page: &lt;a href="https://github.com/buraksezer/olric"&gt;https://github.com/buraksezer/olric&lt;/a&gt;&lt;/p&gt;

</description>
      <category>go</category>
      <category>showdev</category>
      <category>database</category>
    </item>
    <item>
      <title>Olric v0.2.0 is out: Distributed cache and in-memory key/value data store. Embeddable or language independent service.</title>
      <dc:creator>Burak Sezer</dc:creator>
      <pubDate>Fri, 29 May 2020 08:28:45 +0000</pubDate>
      <link>https://dev.to/buraksez3r/olric-v0-2-0-is-out-distributed-cache-and-in-memory-key-value-data-store-embeddable-or-language-independent-service-hhc</link>
      <guid>https://dev.to/buraksez3r/olric-v0-2-0-is-out-distributed-cache-and-in-memory-key-value-data-store-embeddable-or-language-independent-service-hhc</guid>
      <description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;I have been developing a distributed cache software for a while. It's called Olric. If you are interested in, this is the GitHub link: &lt;a href="https://github.com/buraksezer/olric"&gt;https://github.com/buraksezer/olric&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Some features:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Designed to share some transient, approximate, fast-changing data between servers,&lt;/li&gt;
&lt;li&gt;Embeddable but can be used as a language-independent service with &lt;em&gt;olricd&lt;/em&gt;,&lt;/li&gt;
&lt;li&gt;Supports different eviction algorithms,&lt;/li&gt;
&lt;li&gt;Fast binary protocol,&lt;/li&gt;
&lt;li&gt;Highly available and horizontally scalable,&lt;/li&gt;
&lt;li&gt;Provides best-effort consistency guarantees without being a complete CP (indeed PA/EC) solution,&lt;/li&gt;
&lt;li&gt;Supports replication by default (with sync and async options),&lt;/li&gt;
&lt;li&gt;Quorum-based voting for replica control (Read/Write quorums),&lt;/li&gt;
&lt;li&gt;Supports atomic operations,&lt;/li&gt;
&lt;li&gt;Supports distributed queries on keys,&lt;/li&gt;
&lt;li&gt;Provides a plugin interface for service discovery daemons,&lt;/li&gt;
&lt;li&gt;Provides a locking primitive which inspired by &lt;a href="https://redis.io/commands/setnx#design-pattern-locking-with-codesetnxcode"&gt;SETNX of Redis&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>go</category>
      <category>database</category>
      <category>distributedsystems</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
