Sam Saffron
|
Registered User
|
I am an independent software developer / architect / entrepreneur. I live in Sydney. I love writing software. All original source snippets I post on stackoverflow are dedicated to the public domain. Do with them as you see fit. My blog is here If you are looking to participate in an open source project check out media browser. |
|
1h |
answered | Efficient Ruby LRU cache |
|
5h |
comment |
Is Ferret stable enough to use in production? Actually the github commits are pretty hard evidence (10 commits a year) vs over 300 a year for sphinx sphinxsearch.com/downloads.html |
|
5h |
asked | Is Ferret stable enough to use in production? |
|
16h |
comment |
Efficient Ruby LRU cache for some ideas see: java.sun.com/j2se/1.4.2/… also mongodb has capped collection similarly you can do this stuff with redis. assuming you are looking for a built in ruby solution though |
|
16h |
comment |
Efficient Ruby LRU cache Are you trying for minimal memory use or minimal cpu use, how often are you dropping stuff out of the LRU cache? You can either go the scavenger approach or a double linked list with a paired hash. |
|
1d |
accepted | Encoding problems in rails on ruby 1.9.1 |
|
2d |
asked | Null media experience when playing videos from a plugin in windows media center |
|
Dec 17 |
revised |
Thread safe sql transaction, how to lock a specific row during a transaction ? edited title |
|
Dec 17 |
comment |
SQLite3 problem since Rails 2.3.5 update stackoverflow.com/questions/1350359/… my recommendation would be to install rvm, its much better anyway |
|
Dec 17 |
comment |
Is it legal to using MySQL in commercial environment? yes it is , read the license |
|
Dec 17 |
comment |
Thread safe sql transaction, how to lock a specific row during a transaction ? shoud perhaps expand that an updlock may take a page lock or a row lock depending on all sort of factors. |
|
Dec 17 |
comment |
Thread safe sql transaction, how to lock a specific row during a transaction ? +1 this is the correct answer |
|
Dec 16 |
comment |
How do you query for comments stackoverflow style? I agree with your sentiments here, my implementation would be actually a slight optimization, I would store comment_count in the posts table. on the client side pull out all the posts for rendering, whizz through them and then do a select * from comments where post_id in (id1,id2,id3) - for all posts with more than 0 comments) this makes stuff ultra simple and very efficient for the general case |
|
Dec 16 |
comment |
How do you query for comments stackoverflow style? @Ponies, sorting of comments is not a trivial (votes, date) it inserts the upvoted comments at the bottom of the list, see comments on this question. |
|
Dec 16 |
revised |
How do you query for comments stackoverflow style? added 299 characters in body; edited body |
|
Dec 16 |
comment |
How do you query for comments stackoverflow style? lets keep it real and assume sql 2005. keep in mind hierarchical queries can be performance hogs, this is a performance oriented question (will retag) |
|
Dec 16 |
comment |
How do you query for comments stackoverflow style? @Ponies fixed [10 chars] |
|
Dec 16 |
revised |
How do you query for comments stackoverflow style? added 68 characters in body; added 188 characters in body; edited tags; edited body; added 46 characters in body |
|
Dec 16 |
asked | How do you query for comments stackoverflow style? |
|
Dec 15 |
revised |
How many Ruby threads is too many? added 1 characters in body |
|
Dec 15 |
comment |
C#: How do I generate a unique GUID? stackoverflow.com/questions/1720084/… |
|
Dec 14 |
answered | How many Ruby threads is too many? |
|
Dec 14 |
comment |
What’s the difference between SHA and MD5 (in PHP)? Expanded my answer to include bcrypt which is absolutely what you should be using. |
|
Dec 14 |
revised |
What’s the difference between SHA and MD5 (in PHP)? deleted 174 characters in body; added 4 characters in body; added 191 characters in body |
|
Dec 11 |
comment |
Secure Password Hashing Sometimes I wonder if people read my answers before downvoting them |
|
Dec 10 |
accepted | .NET 4 makes for better unit testing/mocking due to the ability to monkey patch? |
|
Dec 10 |
revised |
How to show the content of the form just entered in the “:confirm =>” option on Ruby on Rails added 52 characters in body |
|
Dec 10 |
comment |
ActiveRecord :select is messing with my data types count_by_sql only returns a single value, I need multiple counts one per row |
|
Dec 10 |
revised |
ActiveRecord :select is messing with my data types added 221 characters in body |
|
Dec 10 |
revised |
ActiveRecord :select is messing with my data types added 446 characters in body |
|
Dec 10 |
revised |
ActiveRecord :select is messing with my data types added 386 characters in body; added 7 characters in body |
|
Dec 9 |
comment |
How to correctly uninstall Ruby 1.9.1 Use rvm for this, save yourself weeks of pain. rvm.beginrescueend.com |
|
Dec 9 |
comment |
ActiveRecord :select is messing with my data types Its available in the MySql::Result object ... its just that when it auto generates the dynamic method, it does not pull it out of there ... probably cause its not defined in the interface ... |
|
Dec 9 |
comment |
ActiveRecord :select is messing with my data types I can work around the issue, but Im trying to find the root cause, my gut tells me its cause the abstract adapter defines no way to do these kind of things |
|
Dec 9 |
asked | ActiveRecord :select is messing with my data types |
|
Dec 9 |
comment |
Rails & MSSQL 2008 - Will We Hit Barriers? Im guessing here, but I am pretty sure :offset is bust on mssql and im not sure if :limit correctly maps to TOP. |
|
Dec 9 |
comment |
How to get efficient Sql Server deadlock handling in C# with ADO? Well I changed it, grabbed the code off reflector in and old dll I had, in real life I would use a constant and no magic numbers |
|
Dec 9 |
revised |
How to get efficient Sql Server deadlock handling in C# with ADO? deleted 1 characters in body |
|
Dec 8 |
revised |
How to programmatically retrieve installer version from Visual Studio Setup Project added 100 characters in body |
|
Dec 8 |
awarded | ● Necromancer |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 6 |
revised |
.NET 4 makes for better unit testing/mocking due to the ability to monkey patch? deleted 38 characters in body; added 1 characters in body |
|
Dec 6 |
revised |
.NET 4 makes for better unit testing/mocking due to the ability to monkey patch? added 384 characters in body |
|
Dec 6 |
comment |
.NET 4 makes for better unit testing/mocking due to the ability to monkey patch? If you have a container (factory) you use for instantiation and use it everywhere to get new instances AND wire it to apply the interception then yes. But it would require a lot of work. plus with dynamic you lose intellisense and can not catch trivial typos at compile time |
|
Dec 6 |
revised |
.NET 4 makes for better unit testing/mocking due to the ability to monkey patch? added 314 characters in body; deleted 1 characters in body; added 29 characters in body |
|
Dec 6 |
answered | .NET 4 makes for better unit testing/mocking due to the ability to monkey patch? |
|
Dec 6 |
answered | Has anyone successfully deployed a Rails project with Ruby 1.9.1? |
|
Dec 6 |
comment |
Encoding problems in rails on ruby 1.9.1 Sorry molf, I downvoted this cause after experiencing this issue as well it was the mysql gems fault, I believe that bug is in a bit of limbo no one is really sure if its an issue. |
|
Dec 6 |
answered | Encoding problems in rails on ruby 1.9.1 |
|
Dec 4 |
accepted | Secure Password Hashing |
