-
as seen on ASP.net Weblogs
- Search for 'ASP.net Weblogs'
.NET Framework 4.0 introduced new class called Lazy<T> and I wrote blog post about it: .Net Framework 4.0: Using System.Lazy<T>. One thing is annoying for me – we have to keep lazy loaded value and its value loader as separate things. In this posting I will introduce you my Lazy<T>…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've been reading Entity Framework and people were crying over why there was not implicit lazy loading or something. Basically I've been searching things about Lazy Loading and now I know what it is : It is a design pattern which allows us to load objects when they are really needed.
But what is…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I compiling with Solaris 10 SPARC, jdk 1.6 from Sun, Ant 1.7.1 from OpenCSW.
I have no problem running hadoop 0.17.2.1
However, I have problem compiling/integrating hive with the error 'cannot find symbol', although I followed the tutorial.
I have the hive source code from SVN exactly from tutorial…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
What is the difference between these two functions? I see that lazy is intended to be lazy, but I don't understand how that is accomplished.
-- | Identity function.
id :: a -> a
id x = x
-- | The call '(lazy e)' means the same as 'e', but 'lazy' has a…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Does anybody have an example of lazy loading (about 10,000 items) an Android ListView from a Sqlite databse?
>>> More