<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Query Subscriptions on Producthunt daily</title>
        <link>https://producthunt.programnotes.cn/en/tags/query-subscriptions/</link>
        <description>Recent content in Query Subscriptions on Producthunt daily</description>
        <generator>Hugo -- gohugo.io</generator>
        <language>en</language>
        <lastBuildDate>Sat, 03 May 2025 15:26:47 +0800</lastBuildDate><atom:link href="https://producthunt.programnotes.cn/en/tags/query-subscriptions/index.xml" rel="self" type="application/rss+xml" /><item>
        <title>dice</title>
        <link>https://producthunt.programnotes.cn/en/p/dice/</link>
        <pubDate>Sat, 03 May 2025 15:26:47 +0800</pubDate>
        
        <guid>https://producthunt.programnotes.cn/en/p/dice/</guid>
        <description>&lt;img src="https://images.unsplash.com/photo-1698892289193-eb8b082ecce3?ixid=M3w0NjAwMjJ8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NDYyNTcxMjF8&amp;ixlib=rb-4.0.3" alt="Featured image of post dice" /&gt;&lt;h1 id=&#34;dicedbdice&#34;&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/DiceDB/dice&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;DiceDB/dice&lt;/a&gt;
&lt;/h1&gt;&lt;h1 id=&#34;dicedb&#34;&gt;DiceDB
&lt;/h1&gt;&lt;p&gt;&lt;a href=&#34;https://dicedb.io&#34;&gt;&lt;img src=&#34;https://img.shields.io/badge/site-dicedb.io-00A1FF?style=flat-square&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;slatedb.io&#34;
	
	
&gt;&lt;/a&gt;
&lt;a href=&#34;https://dicedb.io/get-started/installation/&#34;&gt;&lt;img src=&#34;https://img.shields.io/badge/docs-00A1FF?style=flat-square&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;Docs&#34;
	
	
&gt;&lt;/a&gt;
&lt;a target=&#34;_blank&#34; href=&#34;https://discord.gg/6r8uXWtXh7&#34;&gt;&lt;img src=&#34;https://dcbadge.limes.pink/api/server/6r8uXWtXh7?style=flat&#34; alt=&#34;discord community&#34; /&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;LICENSE&#34; &gt;&lt;img src=&#34;https://img.shields.io/badge/license-BSD--3--Clause-blue.svg&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;License&#34;
	
	
&gt;&lt;/a&gt;
&lt;img src=&#34;https://img.shields.io/github/sponsors/arpitbbhayani?label=Sponsors&amp;amp;logo=GitHub&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;GitHub Sponsor&#34;
	
	
&gt;&lt;/p&gt;
&lt;h3 id=&#34;what-is-dicedb&#34;&gt;What is DiceDB?
&lt;/h3&gt;&lt;p&gt;DiceDB is an open-source, fast, reactive, in-memory database optimized for modern hardware. Commonly used as a cache, it offers a familiar interface while enabling real-time data updates through query subscriptions. It delivers higher throughput and lower median latencies, making it ideal for modern workloads.&lt;/p&gt;
&lt;h2 id=&#34;get-started&#34;&gt;Get started
&lt;/h2&gt;&lt;h3 id=&#34;setting-up-dicedb-with-docker&#34;&gt;Setting up DiceDB with Docker
&lt;/h3&gt;&lt;p&gt;The easiest way to get started with DiceDB is using &lt;a class=&#34;link&#34; href=&#34;https://www.docker.com/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Docker&lt;/a&gt; by running the following command.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ docker run -p 7379:7379 dicedb/dicedb:latest
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;The above command will start the DiceDB server running locally on the port &lt;code&gt;7379&lt;/code&gt; and you can connect
to it using &lt;a class=&#34;link&#34; href=&#34;https://github.com/DiceDB/dicedb-cli&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;DiceDB CLI&lt;/a&gt; and SDKs.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!NOTE]
If you are looking to setup DiceDB for development or want to setup from source, refer
our &lt;a class=&#34;link&#34; href=&#34;https://github.com/DiceDB/dice/blob/master/CONTRIBUTING/README.md&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;CONTRIBUTING/README.md&lt;/a&gt; guide.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&#34;setting-up-cli&#34;&gt;Setting up CLI
&lt;/h2&gt;&lt;h3 id=&#34;using-curl&#34;&gt;Using cURL
&lt;/h3&gt;&lt;p&gt;The best way to connect to DiceDB is using &lt;a class=&#34;link&#34; href=&#34;https://github.com/DiceDB/dicedb-cli&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;DiceDB CLI&lt;/a&gt; and you can install it by running the following command&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ sudo su
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ curl -sL https://raw.githubusercontent.com/DiceDB/dicedb-cli/refs/heads/master/install.sh &lt;span class=&#34;p&#34;&gt;|&lt;/span&gt; sh
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;If you are working on unsupported OS (as per above script), you can always follow the installation instructions mentioned in the &lt;a class=&#34;link&#34; href=&#34;https://github.com/DiceDB/dicedb-cli&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;dicedb/cli&lt;/a&gt; repository.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!NOTE]
If you are looking to setup DiceDB for development or want to setup from source, refer
our &lt;a class=&#34;link&#34; href=&#34;https://github.com/DiceDB/dice/blob/master/CONTRIBUTING/README.md&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;CONTRIBUTING/README.md&lt;/a&gt; guide.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&#34;want-to-contribute&#34;&gt;Want to contribute?
&lt;/h2&gt;&lt;p&gt;The Code Contribution Guidelines are published at &lt;a class=&#34;link&#34; href=&#34;CONTRIBUTING/README.md&#34; &gt;CONTRIBUTING/README.md&lt;/a&gt;; please read them before you start making any changes. This would allow us to have a consistent standard of coding practices and developer experience.&lt;/p&gt;
&lt;p&gt;Contributors can join the &lt;a class=&#34;link&#34; href=&#34;https://discord.gg/6r8uXWtXh7&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Discord Server&lt;/a&gt; for quick collaboration.&lt;/p&gt;
&lt;h2 id=&#34;sponsors&#34;&gt;Sponsors
&lt;/h2&gt;&lt;p&gt;We are incredibly grateful to our sponsors for their generous support, which makes the development of DiceDB possible.&lt;/p&gt;
&lt;a href=&#34;https://www.coderabbit.ai/?utm_source=github&amp;utm_medium=social&amp;utm_campaign=sponsor&amp;utm_term=dicedb&#34;&gt;
  &lt;picture&gt;
    &lt;source media=&#34;(prefers-color-scheme: dark)&#34; srcset=&#34;https://www.coderabbit.ai/images/logo-white.svg&#34;&gt;
    &lt;source media=&#34;(prefers-color-scheme: light)&#34; srcset=&#34;https://www.coderabbit.ai/images/logo-orange.svg&#34;&gt;
    &lt;img alt=&#34;CodeRabbit&#34; src=&#34;https://www.coderabbit.ai/images/logo-orange.svg&#34;&gt;
  &lt;/picture&gt;
&lt;/a&gt;
&lt;h2 id=&#34;support-and-sponsor-us&#34;&gt;Support and Sponsor Us
&lt;/h2&gt;&lt;p&gt;DiceDB is a project with a very strong vision and &lt;a class=&#34;link&#34; href=&#34;https://dicedb.io/roadmap/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;roadmap&lt;/a&gt;. If you like what
we do and find DiceDB useful, please consider supporting and &lt;a class=&#34;link&#34; href=&#34;https://github.com/sponsors/arpitbbhayani&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;sponsoring us on GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://img.shields.io/github/sponsors/arpitbbhayani?label=Sponsors&amp;amp;logo=GitHub&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;GitHub Sponsor&#34;
	
	
&gt;&lt;/p&gt;
&lt;h2 id=&#34;contributors&#34;&gt;Contributors
&lt;/h2&gt;&lt;a href = &#34;https://github.com/dicedb/dice/graphs/contributors&#34;&gt;
  &lt;img src = &#34;https://contrib.rocks/image?repo=dicedb/dice&#34;/&gt;
&lt;/a&gt;
&lt;h2 id=&#34;license&#34;&gt;License
&lt;/h2&gt;&lt;p&gt;This project is licensed under the BSD 3-Clause License. See the &lt;a class=&#34;link&#34; href=&#34;LICENSE&#34; &gt;LICENSE&lt;/a&gt; file for details.&lt;/p&gt;
</description>
        </item>
        
    </channel>
</rss>
