Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
6answers
963 views

Is Perl's flip-flop operator bugged? It has global state, how can I reset it?

I'm dismayed. OK, so this was probably the most fun Perl bug I've ever found. Even today I'm learning new stuff about Perl. Essentially, the flip-flop operator .. which returns false until the ...
3
votes
4answers
120 views

Can pure functions read global state?

Please note: by a "pure" function, I don't mean "pure virtual" I'm referring to this If a function "reads" some global state, does that automatically render it impure? or does it depend on other ...
1
vote
2answers
121 views

Is there a global cross-request cross-session state in PHP?

I'd like to cache some data to be used by all my requests. I'd like an in-memory cache that would get flushed upon the change of a code file (the information is obtained by reflection, and changing ...
1
vote
1answer
361 views

Global state in asp.net mvc application

Problem: Our web console shows a list of all computers on which our application is installed. Each machine has some identification information that can be associated with it. Simple strings like ...
0
votes
0answers
38 views

Reducing mutable shared state

So I'm going through a ray tracing tutorial in an attempt to stretch my F# legs. Since the tutorial is written in C++, it a rather fun challenge to figure out how to apply the concepts in a functional ...
0
votes
3answers
57 views

Why isn't a database considered a form of global state?

I have a general gut feeling about the difference but I'm unable to pinpoint exactly what makes a database different from global state. With a naive definition of "global state", a database is ...