<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Michael Sarchet Blog - Latest Comments</title><link>http://msarchetblog.disqus.com/</link><description></description><atom:link href="https://msarchetblog.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Thu, 18 Sep 2014 05:45:39 -0000</lastBuildDate><item><title>Re: Using ServiceStack.Redis Part 2 Sets and Hashes</title><link>http://msarchet.com/using-servicestack-redis-part-2-sets-and-hashes/#comment-1594331101</link><description>&lt;p&gt;what is the difference between servicestack.redis and nservicekit.redis?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Chirag Dave</dc:creator><pubDate>Thu, 18 Sep 2014 05:45:39 -0000</pubDate></item><item><title>Re: Using the ServiceStack Redis Client</title><link>http://msarchet.com/using-the-servicestack-redis-client/#comment-1500913197</link><description>&lt;p&gt;RemoveCustomer method do not work&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">zhang shi</dc:creator><pubDate>Wed, 23 Jul 2014 23:18:50 -0000</pubDate></item><item><title>Re: Using the ServiceStack Redis Client to Work with Redis Lists (ServiceStack.Redis)</title><link>http://msarchet.github.io/using-the-servicestack-redis-client/#comment-1324150753</link><description>&lt;p&gt;If you try it without you'll find very quickly that the answer is "yes" ;)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Crime Coast</dc:creator><pubDate>Tue, 08 Apr 2014 11:30:07 -0000</pubDate></item><item><title>Re: Using the ServiceStack Redis Client to Work with Redis Lists (ServiceStack.Redis)</title><link>http://msarchet.github.io/using-the-servicestack-redis-client/#comment-1324086253</link><description>&lt;p&gt;Quick question. Is it necessary to release the client?&lt;/p&gt;&lt;p&gt;I noticed there's a "DisposeClient()" method in PooledRedisClientManager but I'm not sure if that would completely kill the connection...&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Crime Coast</dc:creator><pubDate>Tue, 08 Apr 2014 10:50:29 -0000</pubDate></item><item><title>Re: Using the ASP.NET Bundling Pipeline with OWIN</title><link>http://msarchet.github.io/using-the-asp-dot-net-bundling-pipeline-with-owin/#comment-1303406544</link><description>&lt;p&gt;Very interesting but Razor is useful also for accessing resource strings and for @Url. So we are using special controller to serve Razor views for DurandalJS: &lt;a href="http://stackoverflow.com/a/15636715" rel="nofollow noopener" target="_blank" title="http://stackoverflow.com/a/15636715"&gt;http://stackoverflow.com/a/...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Paweł</dc:creator><pubDate>Wed, 26 Mar 2014 07:41:35 -0000</pubDate></item><item><title>Re: Using the ASP.NET Bundling Pipeline with OWIN</title><link>http://msarchet.github.io/using-the-asp-dot-net-bundling-pipeline-with-owin/#comment-1293338689</link><description>&lt;p&gt;Great question. This is something that you would handle by putting a middleware that handled security before the BundlerMiddleware. If you want route specific authorization that's not something that I am focusing on with this.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">msarchet</dc:creator><pubDate>Thu, 20 Mar 2014 11:37:13 -0000</pubDate></item><item><title>Re: Using the ASP.NET Bundling Pipeline with OWIN</title><link>http://msarchet.github.io/using-the-asp-dot-net-bundling-pipeline-with-owin/#comment-1293327341</link><description>&lt;p&gt;"a lot of people will serve their base page for their application as a *.cshtml file off of a MVC Controller"&lt;br&gt;Yes they do, we use the controller/view in the Web Api project itself to serve up the index.chtml. But main reason in my view is security. With controller action we can use Authorization Attributes. How would you handle that easily here?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Vikas</dc:creator><pubDate>Thu, 20 Mar 2014 11:31:22 -0000</pubDate></item><item><title>Re: Using the ServiceStack Redis Client to Work with Redis Lists (ServiceStack.Redis)</title><link>http://msarchet.github.io/using-the-servicestack-redis-client/#comment-1098681183</link><description>&lt;p&gt;I was testing the ServiceStack Redis client and i got an error related to the size of the package in Windows Server 2003 R2.&lt;/p&gt;&lt;p&gt;For files smaller than 30MB works fine, but for files bigger than 32-33MB it started to send errors. And it only happened in Windows Server 2003 R2, I tested in Windows 7 and Windows 2008 R2 successfully.&lt;/p&gt;&lt;p&gt;The code:&lt;/p&gt;&lt;p&gt;    String text = File.ReadAllText("file.xml");&lt;/p&gt;&lt;p&gt;    String key = Guid.NewGuid().ToString();&lt;/p&gt;&lt;p&gt;    if (redisClient.Add(key, text, DateTime.Now.AddSeconds(300)))&lt;/p&gt;&lt;p&gt;        String Result = redisClient.Get&amp;lt;object&amp;gt;(key) as String;&lt;/p&gt;&lt;p&gt;The error:&lt;/p&gt;&lt;p&gt;    System.Net.Sockets.SocketException (0x80004005): An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)&lt;/p&gt;&lt;p&gt;Does anyone know if it is because an OS restriction or it is a problem with the ServiceStack client for Redis.&lt;/p&gt;&lt;p&gt;Thanks in advance.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Randall</dc:creator><pubDate>Sun, 27 Oct 2013 14:55:46 -0000</pubDate></item><item><title>Re: Using the ServiceStack Redis Client to Work with Redis Lists (ServiceStack.Redis)</title><link>http://msarchet.github.io/using-the-servicestack-redis-client/#comment-1021596647</link><description>&lt;p&gt;Outstanding.&lt;/p&gt;&lt;p&gt;Love this stuff.  Great job you guys.  I really like this api you have created for Redis.&lt;/p&gt;&lt;p&gt;I'm creating an NServiceBus solution with RabbitMQ as the transport and using MongoDB as my replay message source and Redis as my working memory source.&lt;/p&gt;&lt;p&gt;Figuring out the best way to inject this client into NserviceBus had me scratching my head a bit not realizing the IRedisClientsManager.  Looks awesome.&lt;/p&gt;&lt;p&gt;Thank you!&lt;/p&gt;&lt;p&gt;FYI: if you guys had a thin container like NServiceBus but with 70% overhead I would be highly interested!  I"m not a huge fan of the saga pattern and would rather use something like the Routing Slip pattern.&lt;/p&gt;&lt;p&gt;Thanks again!&lt;/p&gt;&lt;p&gt;Eric Cotter&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Eric</dc:creator><pubDate>Thu, 29 Aug 2013 01:56:06 -0000</pubDate></item><item><title>Re: Using ServiceStack.Redis Part 2 Sets and Hashes</title><link>http://michaelsarchet.com/using-servicestack-redis-part-2-sets-and-hashes/#comment-764533102</link><description>&lt;p&gt;Got it.&lt;/p&gt;&lt;p&gt;I know about the twitter and my blog links, can't figure out why and can't get a response :(&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">msarchet</dc:creator><pubDate>Sat, 12 Jan 2013 00:04:06 -0000</pubDate></item><item><title>Re: Using ServiceStack.Redis Part 2 Sets and Hashes</title><link>http://michaelsarchet.com/using-servicestack-redis-part-2-sets-and-hashes/#comment-764532121</link><description>&lt;p&gt;Yeah, it just helps exploring what each API does + returns. In comments you can just show the output of what it prints.&lt;/p&gt;&lt;p&gt;Also for some reason, twitter thinks your blog is unsafe and warns trying to click on a blink to this blog.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mythz</dc:creator><pubDate>Sat, 12 Jan 2013 00:02:50 -0000</pubDate></item><item><title>Re: Using ServiceStack.Redis Part 2 Sets and Hashes</title><link>http://michaelsarchet.com/using-servicestack-redis-part-2-sets-and-hashes/#comment-764524198</link><description>&lt;p&gt;Thanks Demis :)&lt;/p&gt;&lt;p&gt;On the print/dump are you talking about for just debugging purposes? I was just showing my examples to help show what the methods are doing&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">msarchet</dc:creator><pubDate>Fri, 11 Jan 2013 23:52:52 -0000</pubDate></item><item><title>Re: Using ServiceStack.Redis Part 2 Sets and Hashes</title><link>http://michaelsarchet.com/using-servicestack-redis-part-2-sets-and-hashes/#comment-764520119</link><description>&lt;p&gt;Hi Michael,&lt;/p&gt;&lt;p&gt;Nice post, you may want to use the T.Print() and T.PrintDump() extension methods which will pretty print the responses to the console, e.g:&lt;/p&gt;&lt;p&gt;var intersect = set.GetIntersectFromSets(otherSet);&lt;br&gt;intersect.PrintDump();&lt;/p&gt;&lt;p&gt;Also, you've got a typo at "GetVluaeFromHash"&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mythz</dc:creator><pubDate>Fri, 11 Jan 2013 23:47:36 -0000</pubDate></item><item><title>Re: Using the ServiceStack.Redis Client</title><link>http://michaelsarchet.com/using-the-servicestack-redis-client/#comment-734207602</link><description>&lt;p&gt;You're welcome&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">msarchet</dc:creator><pubDate>Wed, 12 Dec 2012 15:05:55 -0000</pubDate></item><item><title>Re: Using the ServiceStack.Redis Client</title><link>http://michaelsarchet.com/using-the-servicestack-redis-client/#comment-734190673</link><description>&lt;p&gt;Thanks for the writeup.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Derek Basch</dc:creator><pubDate>Wed, 12 Dec 2012 14:41:43 -0000</pubDate></item></channel></rss>