Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
312 views

Pythonic way to only do work first time a variable is called

my Python class has some variables that require work to calculate the first time they are called. Subsequent calls should just return the precomputed value. I don't want to waste time doing this work ...
3
votes
1answer
171 views

Comparing string distance based on precomputed hashes

I have a large list (over 200,000) of strings that I'd like to compare to a given string. The given string is inserted by a user, so it may be slightly incorrect. What I was hoping to do was create ...
1
vote
1answer
188 views

Firebird compute field value in trigger from query

I'm trying to make this trigger work: CREATE trigger trig_tbl_art for tbl_art active before update position 0 AS begin IF (NEW.e OLD.e) THEN IF (NEW.f = OLD.f) THEN NEW.f = SELECT ...
0
votes
3answers
68 views

guidance on precomputed SQL attributes

Often I deal with aggregate or parent entities which have attributes derived from their constituent or children members. For example: The byte_count and packet_count of a TcpConnection object is ...