Tagged Questions
The distributed realtime computation system. For the Blackberry model with the same name use blackberry-storm instead.
1
vote
1answer
69 views
python-storm orm many-to-many
I'm using python-storm as orm. The many-to-many reference set is giving me headaches :(
These are the relevant objects:
class Author(object):
__storm_table__ = "author"
id = ...
1
vote
1answer
159 views
How to add additional information to a many-to-many relation?
I'm writing a program to manage orders and then print them.
An order is an object containing the ordering person, the date and the products this person orders. I'd like to add the amount of a certain ...
0
votes
2answers
102 views
STORM Cloud Servers — Anybody Used Them? Any Reviews and/or Advice?
Just wondering if anyone has used STORM Cloud Servers from Liquid Web:
https://www.stormondemand.com/cloud-server/
I'm shopping for a new hosting provider for my server that has about 50 'mom & ...
-1
votes
0answers
17 views
How Real-Time Processing System(like s4 and storm) used?
I currently study s4 and storm, but I found it not so much useful. For example, I have a 10-steps processing system. I can easily implement it using MQ: 10 programs which listen to specific messages, ...
-1
votes
1answer
714 views
Making ORM with Python's Storm
The question is based on the thread, since I observed that Storm allows me reuse my SQL-schemas.
How can you solve the following error message in Storm?
The code is based on Jason's answer and on ...