<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Redis | Python学習講座</title>
	<atom:link href="https://www.python.ambitious-engineer.com/archives/category/nosql/redis/feed" rel="self" type="application/rss+xml" />
	<link>https://www.python.ambitious-engineer.com</link>
	<description>PythonエンジニアによるPython3学習サイト</description>
	<lastBuildDate>Sat, 19 Aug 2017 01:47:21 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://www.python.ambitious-engineer.com/wp-content/uploads/2020/05/favicon2-32.png</url>
	<title>Redis | Python学習講座</title>
	<link>https://www.python.ambitious-engineer.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Redisの型 ソート済みセット型</title>
		<link>https://www.python.ambitious-engineer.com/archives/1201</link>
		
		<dc:creator><![CDATA[Kuro-Chan]]></dc:creator>
		<pubDate>Mon, 17 Jul 2017 02:29:46 +0000</pubDate>
				<category><![CDATA[Redis]]></category>
		<guid isPermaLink="false">http://www.python.ambitious-engineer.com/?p=1201</guid>

					<description><![CDATA[<p>Redisにはセット型にスコアと呼ばれる数値を付加することができるソート済みセット型という型がサポートされています。オンラインゲームの得点などに利用することができます。 全てのコマンドについては説明できませんのが、基本的...</p>
<p>The post <a href="https://www.python.ambitious-engineer.com/archives/1201">Redisの型 ソート済みセット型</a> first appeared on <a href="https://www.python.ambitious-engineer.com">Python学習講座</a>.</p>]]></description>
		
		
		
			</item>
		<item>
		<title>Redisの型 セット型</title>
		<link>https://www.python.ambitious-engineer.com/archives/1199</link>
		
		<dc:creator><![CDATA[Kuro-Chan]]></dc:creator>
		<pubDate>Mon, 17 Jul 2017 00:56:40 +0000</pubDate>
				<category><![CDATA[Redis]]></category>
		<guid isPermaLink="false">http://www.python.ambitious-engineer.com/?p=1199</guid>

					<description><![CDATA[<p>セット型は文字列型の順不同の集合です。PythonのSetとよく似ていますが、やはりこちらも論理演算ができる点が特徴です。また、異なる集合間で要素を移動させることが可能ですので、なんらかのグループを扱うこともできます。 ...</p>
<p>The post <a href="https://www.python.ambitious-engineer.com/archives/1199">Redisの型 セット型</a> first appeared on <a href="https://www.python.ambitious-engineer.com">Python学習講座</a>.</p>]]></description>
		
		
		
			</item>
		<item>
		<title>Redisの型 ハッシュ型</title>
		<link>https://www.python.ambitious-engineer.com/archives/1192</link>
		
		<dc:creator><![CDATA[Kuro-Chan]]></dc:creator>
		<pubDate>Mon, 17 Jul 2017 00:15:34 +0000</pubDate>
				<category><![CDATA[Redis]]></category>
		<guid isPermaLink="false">http://www.python.ambitious-engineer.com/?p=1192</guid>

					<description><![CDATA[<p>Redisにはハッシュと呼ばれる辞書っぽい型が用意されています。 全てのコマンドについては説明できませんのが、基本的にはRedisコマンドを小文字にしたものがメソッドとして提供されています。ハッシュ型のRedisコマンド...</p>
<p>The post <a href="https://www.python.ambitious-engineer.com/archives/1192">Redisの型 ハッシュ型</a> first appeared on <a href="https://www.python.ambitious-engineer.com">Python学習講座</a>.</p>]]></description>
		
		
		
			</item>
		<item>
		<title>Redisの型 リスト型</title>
		<link>https://www.python.ambitious-engineer.com/archives/1189</link>
		
		<dc:creator><![CDATA[Kuro-Chan]]></dc:creator>
		<pubDate>Sun, 16 Jul 2017 08:48:42 +0000</pubDate>
				<category><![CDATA[Redis]]></category>
		<guid isPermaLink="false">http://www.python.ambitious-engineer.com/?p=1189</guid>

					<description><![CDATA[<p>前回少し触れましたが、Redisには単一のデータ以外にも様々なデータ型が用意されています。 全てのコマンドについては説明できませんのが、基本的にはRedisコマンドを小文字にしたものがメソッドとして提供されています。リス...</p>
<p>The post <a href="https://www.python.ambitious-engineer.com/archives/1189">Redisの型 リスト型</a> first appeared on <a href="https://www.python.ambitious-engineer.com">Python学習講座</a>.</p>]]></description>
		
		
		
			</item>
		<item>
		<title>Redis 文字列型と基本的な使い方</title>
		<link>https://www.python.ambitious-engineer.com/archives/1185</link>
		
		<dc:creator><![CDATA[Kuro-Chan]]></dc:creator>
		<pubDate>Sun, 16 Jul 2017 06:51:41 +0000</pubDate>
				<category><![CDATA[Redis]]></category>
		<guid isPermaLink="false">http://www.python.ambitious-engineer.com/?p=1185</guid>

					<description><![CDATA[<p>KVS型のNoSQLの中でも高速で人気の高いredisをpythonから使用する方法について学習します。 Redisとは RedisとはKVSの一種で、メモリ上で動作するため非常に高速であることが特徴的です。一方でディス...</p>
<p>The post <a href="https://www.python.ambitious-engineer.com/archives/1185">Redis 文字列型と基本的な使い方</a> first appeared on <a href="https://www.python.ambitious-engineer.com">Python学習講座</a>.</p>]]></description>
		
		
		
			</item>
	</channel>
</rss>
