Skip to main content
Search type Search syntax
Tags [tag]
Exact "words here"
Author user:1234
user:me (yours)
Score score:3 (3+)
score:0 (none)
Answers answers:3 (3+)
answers:0 (none)
isaccepted:yes
hasaccepted:no
inquestion:1234
Views views:250
Code code:"if (foo != bar)"
Sections title:apples
body:"apples oranges"
URL url:"*.example.com"
Saves in:saves
Status closed:yes
duplicate:no
migrated:no
wiki:no
Types is:question
is:answer
Exclude -[tag]
-apples
For more details on advanced search visit our help page
Results tagged with
Search options not deleted user 5719

Clojure is a general-purpose language supporting interactive development that encourages a functional programming style, and simplifies multithreaded programming.

5 votes

Scala or Clojure Functional Programming best practices

The actor model works pretty with with Command/Query Responsibility Segregation (CQRS), as messages to actors that perform data manipulation can be used as "Command" equivalents. So, what does that h …
Daniel C. Sobral's user avatar
3 votes

What limitations does the JVM impose on tail-call optimization

So, at the bytecode level, one just needs goto. In this case, in fact, the hard work is done by the compiler. Have you noticed that the method address starts with 0? That all methods ofsets sta …
Daniel C. Sobral's user avatar
4 votes
Accepted

Programming language with native concurrency support for large graphs?

It has Clojure-like Agents (which are not like DAI agents), Software Transactional Memory, and many more features. So, overall, I think Scala is a great choice. …
Daniel C. Sobral's user avatar