Tagged Questions
1
vote
1answer
104 views
Yesod: how to send Redis results as JSON
Apologies in advance for my Haskell inexperience. I am writing a little wrapper for a Redis instance for a learning project. So far Yesod has been an absolute wonder. With very little Haskell ...
2
votes
0answers
62 views
Yesod custom field of type [Double]
I want to create a custom field in Yesod that is a text field with a JSON array of doubles. However I keep getting type errors. My current attempt is:
doubleListField :: RenderMessage master ...
0
votes
1answer
94 views
Persist an entity with a user reference in Yesod?
I'm changing my existing Yesod application to run on a SQL backend instead of mongo. The generated table structure is more strict then the mongo backend. Foreign key references should be created ...
0
votes
1answer
116 views
JSON parsing befuddlement
I'm working on the I/O aspect of my json server, and there's a method I just can't get right.
First, I'll give the error, then the code and datatypes involved and some commentary about the problem ...
1
vote
1answer
144 views
Yesod modify and delete by JSON
I'm new in Yesod Haskell, I like it a lot, but I have to leave it after a month because I can not solve this problem:
I have the version yesod-core version:1.0.1.3
I followed this example:
More ...
86
votes
1answer
3k views
Exceptions in Yesod
I had made a daemon that used a very primitive form of ipc (telnet and send a String that had certain words in a certain order). I snapped out of it and am now using JSON to pass messages to a Yesod ...