Tagged Questions
The near-real-time tag has no wiki summary.
6
votes
13answers
864 views
What constitutes 'real time'
I am having trouble deciding on whether to classify my application as 'real time' or 'near real time', or perhaps even something else.
The software receives data immediately as it is generated from ...
4
votes
2answers
329 views
Fastest and most efficient upsampling routine for Audio in Java
I have a need to convert audio samples from 11025 and 22050 to 44100; I'm looking for the fastest and best sounding conversion routine. I require that the answer be given in pure Java, without the ...
4
votes
2answers
2k views
PostgreSQL to Data-Warehouse: Best approach for near-real-time ETL / extraction of data
Background:
I have a PostgreSQL (v8.3) database that is heavily optimized for OLTP.
I need to extract data from it on a semi real-time basis (some-one is bound to ask what semi real-time means and ...
3
votes
2answers
3k views
How Do I do Real Time Sound/Signal Processing On The iPhone?
I may be doing an iPhone-based application doing near-real-time sound-processing (filtering, etc). I was wondering the best way to get started. Would I want to create an audio cue for recording and ...
2
votes
1answer
189 views
Architecting an open source event-driven system for storage and evaluation at scale
I am currently thinking about designing an architecture that can handle vast volumes of incoming source data, clean the data and store it in a key/value store like Riak or MongoDB. After that, it ...
2
votes
3answers
283 views
shell_exec() in PHP
<?php
// Execute a shell script
$dump = shell_exec('bigfile.sh'); // This script takes some 10s to complete execution
print_r($dump); // Dump log to screen
?>
When the script above is ...
2
votes
3answers
3k views
How to make a mutable ItemizedOverlay
I would like to make a Google map overlay with changable pins. An easy way to visualize this would be to think of a near real time overlay, where the pins are constantly changing location.
However, ...
2
votes
2answers
571 views
Is it possible to obtain real time search results sorted by frequently updating field with Lucene 3.0 in Java
Consider following assumptions:
I have Java 5.0 Web Application for which I'm considering to use Lucene 3.0 for full-text searching
There will be more than 1000K Lucene documents, each with 100 ...
0
votes
1answer
68 views
How to enable realtime search in Solr 4.0
I’m trying to enable realtime search in Solr 4.0 (So I can see new documents without committing).
I’ve added:
<realtime visible="0" facet="true">true</realtime>
But documents aren’t ...
0
votes
2answers
76 views
The best realtime search platform for realtime indexing of large db?
I am building a site atm which requires realtime indexing of results (not 10,000 docs per second, I mean millisecond updates). I went anout researching the different techs and originally came up with ...
0
votes
4answers
241 views
how can I use Solr to do real-time search
now we use deltaImport to update data from db to index.
but we have some information need a real-time search or near real-time search.
what should I do if I use solr to solve this?
0
votes
3answers
151 views
How can I programmatically realistically modify a video clip while playing?
A while ago I came across an interesting array of video presentations on a German company's website. They deal with modifying a video stream while it's playing, and I remained pleasantly impressed by ...