Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
5answers
669 views

Haskell: How does non-strict and lazy differ?

I often read that lazy is not the same as non-strict but I find it hard to understand the difference. They seem to be used interchangeably but I understand that they have different meanings. I would ...
18
votes
3answers
744 views

How many ways are there to describe the Fibonacci sequence in Perl 6?

I've been looking at the various ways of constructing lazy lists in Perl 6 and I would like to collect all of the concise ways of describing the Fibonacci sequence. I will start this off with the ...
16
votes
3answers
527 views

What's so bad about Lazy I/O?

I've generally heard that production code should avoid using Lazy I/O. My question is, why? Is it ever OK to use Lazy I/O outside of just toying around? And what makes the alternatives (e.g. ...
15
votes
4answers
2k views

Read a file one line at a time in node.js?

I am trying to read a large file one line at a time. I found a question on Quora that dealt with the subject but I'm missing some connections to make the whole thing fit together. (link to the Quora ...
13
votes
2answers
518 views

Haskell Lazy ByteString + read/write progress function

I am learing Haskell Lazy IO. I am looking for an elegant way to copy a large file (8Gb) while printing copy progress to console. Consider the following simple program that copies a file silently. ...
13
votes
9answers
1k views

Some solid OOP criticism?

I want to ask you to provide me with some articles (maybe books), which you possibly have found very convincing criticising the OOP methodology. I have read some in the WWW on this topic and I didn't ...
12
votes
3answers
272 views

How lazy is Haskell's `++`?

I'm curious how I should go about improving the performance of a Haskell routine that finds the lexicographically minimal cyclic rotation of a string. import Data.List swapAt n = f . splitAt n where ...
12
votes
2answers
2k views

F#: Why is using a sequence so much slower than using a list in this example

Background: I have a sequence of contiguous, time-stamped data. The data-sequence has holes in it, some large, others just a single missing value. Whenever the hole is just a single missing value, I ...
11
votes
3answers
376 views

Creating a doubly linked list from a list in OCaml

I am often told that using the Lazy module in OCaml, one can do everything you can do in a lazy language such as Haskell. To test this claim, I'm trying to write a function that converts a regular ...
9
votes
12answers
57k views

hibernate: LazyInitializationException: could not initialize proxy

Here's one that has me perplexed. I'm trying to implement a basic Hibernate DAO structure, but am having a problem. Here's the essential code: int startingCount = sfdao.count(); sfdao.create( sf ...
7
votes
2answers
233 views

Implement lazy drag & drop

I am trying to implement a lazy drag and drop operation. I want to show a listview with files to my user, when the user drags a file and drops it into a folder the content should be downloaded and ...
7
votes
4answers
2k views

Ocaml List: Implement append and map functions

I'm currently trying to extend a friend's OCaml program. It's a huge collection of functions needed for some data analysis.. Since I'm not really an OCaml crack I'm currently stuck on a (for me) ...
6
votes
2answers
149 views

Scala: forward references - why does this code compile?

Consider this snippet: object A { val b = c val c = "foo" } println( A.b ) // prints "null" As part of a larger program, this would lead to a failure at runtime. The compiler ...
6
votes
2answers
219 views

clojure map function being eager?

According to Mark's awesome tutorial page, "The map function applies a given function that takes one parameter to each item in a collection, returning a lazy sequence of the results". Yet when I do ...
6
votes
1answer
854 views

Clojure- why doesn't this piece of code work in clojure, is there some lazy evaluation gotcha I am missing?

Am new to clojure and learning it by working through SICP. I cannot get this piece of code from SCIP 1.3.1 to work. What am I missing ? (defn sum [term a next b] (if (> a b) 0 (+ ...
5
votes
2answers
101 views

How does Lazy<T> get around needing new() constraint?

Example 1 (does not compile): void Main() { var c = new C<D>(); c.M.F(); } class C<T> { T _m = null; public T M { get { if(_m == null) _m = new T(); ...
5
votes
2answers
117 views

Rationale for behaviour overriding a val

class A { val x = println("A") } class B extends A { override val x = println("B") } (new B).x Prints: A B However, class A { lazy val x = println("A") } class B extends A { ...
5
votes
1answer
187 views

What is the performace penalty to using lazy val in scala, but INSIDE a def

I know inside a class using lazy val uses some type of double lock pattern. But what about inside a function definition? Does it use the same pattern? For example: class Sample { def ...
5
votes
3answers
489 views

Directory.EnumerateFiles => UnauthorizedAccessException

There is a nice new method in .NET 4.0 for getting files in a directory in a streaming way via enumeration. The problem here is that if one wishes to enumerate all files one may not know in advance ...
5
votes
1answer
278 views

Lzz (Lazy C++) - #include file not found

I am trying to use Lzz to generate C++ header files from my *.cpp files. The calling sequence is something like this: ./lzz -hx hpp -c -o out src/*.lzz Unfortunately, it always fails saying it ...
5
votes
3answers
296 views

Examples of lazy evaluation techniques in Perl 5?

I find that one of the most interesting features of both Haskell and Perl6 is the ability to defer calculating values until they are actually needed. Perl5 on the other hand likes to do everything ...
5
votes
4answers
194 views

Lazily sample random results in python

Python question. I'm generating a large array of objects, which I only need to make a small random sample. Actually generating the objects in question takes a while, so I wonder if it would be ...
5
votes
2answers
238 views

Common Lisp condition system for transfer of control

I'll admit right up front that the following is a pretty terrible description of what I want to do. Apologies in advance. Please ask questions to help me explain. :-) I've written ETLs (Extract, ...
5
votes
5answers
209 views

In functional list manipulation, what do we call “inserting something between each item”?

Occasionally I find I need to process a list by inserting a new item after each item, except the last one. Similar to how you might put a comma between each item of a list of strings. I got fed up of ...
5
votes
3answers
2k views

Lazy choices in Django form

I have a Django my_forms.py like this: class CarSearchForm(forms.Form): # lots of fields like this bodystyle = forms.ChoiceField(choices=bodystyle_choices()) Each choice is e.g. ...
4
votes
2answers
77 views

hibernate, to be lazy or not to be lazy?

I have entity A, which has a many-to-many relation to entity B. So the table layout is : A, AB(mapping table), B To get an object of entity A: I call A.getById() which does ...
4
votes
2answers
199 views

When are scala's for-comprehensions lazy?

In Python, I can do something like this: lazy = ((i,j) for i in range(0,10000) for j in range(0,10000)) sum((1 for i in lazy)) It will take a while, but the memory use is constant. The same ...
4
votes
1answer
111 views

SQL Query minimizing/caching in a C++ application

I'm writing a project in C++/Qt and it is able to connect to any type of SQL database supported by the QtSQL (http://doc.qt.nokia.com/latest/qtsql.html). This includes local servers and external ones. ...
4
votes
2answers
364 views

Spring + hibernate lazy fetching

I have problem with org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role. How to implement lazy fetching with gwt + spring + hibernate? Here's my appContext: ...
4
votes
2answers
212 views

Lazy sequence min-max finder stackoverflow problem

(defn min-max-by-columns [s] (reduce (fn [[smallest largest] y] [(map min smallest y) (map max largest y)]) [(first s) (first s)] s)) I'm trying to find out the max and ...
4
votes
4answers
222 views

Merge N sorted arrays in ruby lazily

How does one merge N sorted arrays (or other list-like data structures) lazily in Ruby? For example, in Python you would use heapq.merge. There must be something like this built into Ruby, right?
4
votes
1answer
116 views

How can i pass a Lazy<T> into my projection?

My Vehicle type: public class Vehicle : EntityObject { private Lazy<string> _nameFromDelegate = null; private Lazy<IList<Component>> _components = null; public ...
4
votes
1answer
201 views

Difference between Lazy<T> and LazyInit<T>

I had the following line in a class that I was using. private static readonly LazyInit<TestClass> _instance = new LazyInit<TestClass>(() => new TestClass(), ...
4
votes
2answers
253 views

How to go about reading a web page lazily in Clojure

I and a friend recently implemented link grabbing in my Clojure IRC bot. When it sees a link, it slurp*s the page and grabs the title from the page. The problem is that it has to slurp* the ENTIRE ...
4
votes
1answer
277 views

Is there a prefabricated magnifying glass cursor for SWT somewhere available?

I would like to use a "magnifying glass" (with + and -) cursor in my SWT application. I'm aware that it is pretty easy to create a cursor for oneself, I just don't want to invest the time right now. ...
4
votes
4answers
2k views

Force lazy entity to load real instance

I have a proxy for a lazy entity which has been created in the session by loading a child entity. A subsequent fetch on the parent entity only returns the NH proxy. I need the actual instance to check ...
4
votes
6answers
9k views

What is the difference between lazy=“true” and lazy=“proxy” in nhibernate?

What is the difference between lazy="true" and lazy="proxy" in nhibernate?
3
votes
1answer
66 views

Size of Chunk in Data.ByteString.Lazy

Module Data.ByteString.Lazy contain own implementation of ByteString type: data ByteString = Empty | Chunk !S.ByteString ByteString And there are following phrase about size of chunk: The ...
3
votes
4answers
116 views

Is the use of .Net Lazy class an overkill in this case?

I learned about Lazy class in .Net recently and have been probably over-using it. I have an example below where things could have been evaluated in an eager fashion, but that would result in repeating ...
3
votes
3answers
222 views

InvalidOperationException in my Lazy<> value factory

I have a class containing something like the following: public static class Config { private static Lazy<ConfigSource> _cfgSrc = new Lazy<ConfigSource>( () => { /* ...
3
votes
2answers
592 views

Thread-Safe lazy instantiating using MEF

// Member Variable private static readonly object _syncLock = new object(); // Now inside a static method foreach (var lazyObject in plugins) { if ((string)lazyObject.Metadata["key"] = ...
3
votes
2answers
248 views

How to make Singleton a Lazy instantiated class?

I have a class which is lazy instantiated by another library. I don't have control over that library code but still need to be sure it cannot create more than one instance of my class. Is it possible ...
3
votes
3answers
287 views

Pass parameters to constructor, when initializing a lazy instance

public class myClass { public myClass(String InstanceName) { Name = InstanceName; } public String Name { get; set; } } // Now using myClass lazily I have: Lazy<myClass> ...
3
votes
2answers
238 views

Could a bored AWK master kindly convert this Python program?

I love Python but do not really care for AWK. For purposes of comparison (and to see how a Python-to-AWK master would do this), could someone rewrite the following Python program in AWK? Considering ...
3
votes
2answers
325 views

Looking for a basic PHP / MySQL search class

Noob-ish question: I'm looking for a lightweight but decent php way to search all fields of a MySql table, regardless the structure. I first gave it a try on my own with the default mysql select but ...
3
votes
6answers
1k views

Pattern for lazy thread-safe singleton instantiation in java

the lazy thread-safe singleton instantion is kinda not easy to understand to every coder, so i wanted to create a class in our enterprise framework that would do the job. What do you think about it? ...
3
votes
1answer
2k views

Hibernate: Overriding mapping's EAGER in HQL?

It's possible to override LAZY in HQL using LEFT JOIN FETCH. FROM Obj AS obj LEFT JOIN FETCH obj.otherObj WHERE obj.id = :id Is it also possible to override EAGER? How?
3
votes
1answer
1k views

How can I make a WPF TreeView data binding lazy and asynchronous?

I am learning how to use data binding in WPF for a TreeView. I am procedurally creating the Binding object, setting Source, Path, and Converter properties to point to my own classes. I can even go ...
3
votes
2answers
791 views

Avoiding secondary selects or joins with Hibernate Criteria or HQL query

I am having trouble optimizing Hibernate queries to avoid performing joins or secondary selects. When a Hibernate query is performed (criteria or hql), such as the following: return ...
3
votes
3answers
768 views

Is there a spring lazy proxy factory in Spring?

Wicket has this device called a lazy proxy factory. Given: <property name="foo" ref="beanx"/> the idea is to auto-generate a proxy in place of 'beanx', and then only initialize beanx if and ...

1 2 3 4