Tagged Questions
The persistent tag has no wiki summary.
18
votes
5answers
8k views
Django persistent database connection
I'm using django with apache and mod_wsgi and PostgreSQL (all on same host), and I need to handle a lot of simple dynamic page requests (hundreds per second). I faced with problem that the bottleneck ...
12
votes
5answers
758 views
Persistent Hash Table Implementation
In a program I'm working on, I develop a large "thread tree" (at most k children per node), where each thread makes some modifications to a hash table inherited from its parent. Is there a way to ...
11
votes
4answers
1k views
Persistent data structures in Scala
Are all immutable data structures in Scala persistent? If not, which of them are and which not? What are the behavioural characteristics of those which are persistent? Also, how do they compare to the ...
7
votes
0answers
109 views
What are the rules about concurrently accessing a persistent database
It seems the rules about concurrent access are undocumented (on the Haskell side) and simply assume the developer is familiar with the particular backend being used. For production needs this is a ...
6
votes
5answers
419 views
Java: large persistent hash structure?
I'm looking for a persistent hash structure in java, a simple key-value store, where key is a unique string and value is an int. The value of a key is to be incremented each time an existing key is ...
6
votes
3answers
1k views
How to clear persistent variables while keeping breakpoints in MATLAB?
Is there a way to clear all persistent variables in MATLAB functions, while keeping the breakpoints in the corresponding function files?
clear all;
and
clear functions;
both kill the ...
6
votes
3answers
4k views
Long Lived Persistent TCP Connection on the Android
I've read some articles on the web and some questions on StackOverFlow, but no one seems to have a definite answer over a) If google uses Long Lived TCP connections for Gmail, Mail etc, and b) If ...
6
votes
7answers
3k views
Recommend a fast & scalable persistent Map - Java
I need a disk backed Map structure to use in a Java app. It must have the following criteria:
Capable of storing millions of records (even billions)
Fast lookup - the majority of operations on the ...
6
votes
2answers
866 views
Python: Persistent shell variables in subprocess
I'm trying to execute a series of commands using Pythons subprocess module, however I need to set shell variables with export before running them. Of course the shell doesn't seem to be persistent so ...
5
votes
4answers
357 views
How to design an api to a persistent collection in C#?
I am thinking about creating a persistent collection (lists or other) in C#, but I can't figure out a good API.
I use 'persistent' in the Clojure sense: a persistent list is a list that behaves as ...
5
votes
4answers
1k views
What are the best ways to store Graphs in persistent storage
I am wondering what the best ways to store graphs in persistent storage are, for later analysis, search, clustering, etc.
I see neo4j being an option, I am curious if there are also other graph ...
4
votes
3answers
96 views
Two classes with almost duplicate code inside
At this moment, I have two classes: UserHibernateDao and TicketHibernateDao:
import java.util.List;
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;
import model.dao.Dao;
...
4
votes
2answers
223 views
Persistent local domain socket in php
The answers I've found to this question (such as here, here, and here) all involve pfsockopen(), which seems geared to non-local socket connections. However, the code I've written so far uses php to ...
4
votes
3answers
80 views
How to make subsequent instances of an assembly share the same memory?
I want something like a static class variable, except when different applications load my assembly I want them all to be sharing the same variable.
I know I could write to disk or to a database, but ...
4
votes
6answers
3k views
Persistent header in jQuery Mobile
Couldn't figure out a way to put a bounty on my old question, so I'm reposting it because maybe it was a bug.
Short version: I want a persistent header in a PhoneGap+JQM application that stays ...
4
votes
2answers
1k views
persistent dynamic control c# asp.net
<asp:Button onclick="Some_event" Text="Add TextBox" ID="id1" runat="server" />
//once clicked:
<asp:TextBox ID="txt1" ......></asp:TextBox>
//when clicked again:
<asp:TextBox ...
4
votes
1answer
184 views
C++ Qt editor question
I have the case when I have to manually close the persistent editor for the QTableWidget.
By default, closing the editor this doesn't result in saving the changes to the QTableWidgetItem (it simply ...
4
votes
1answer
331 views
Performance penalty of persistent variables in MATLAB
Recently I profiled some MATLAB code and I was shocked to see the following in a heavily used function:
5.76 198694 58 persistent CONSTANTS;
3.44 198694 59 if isempty(CONSTANTS) % initialize ...
4
votes
2answers
604 views
is there any php redis client support persistent connection?
As the title, I'm looking for a php Redis client that support persistent connection, because my web application receives a lot of requests(each request, it'll put an item in to Redis queue) and I want ...
4
votes
4answers
2k views
HTML text input field with currency symbol
I would like to have a text input field containing the "$" sign in the very beginning, and no matter what editing occurs to the field, for the sign to be persistent.
I would be good if only numbers ...
4
votes
1answer
589 views
Open Source memory mapped hash table utilities for Java
Are there any open source implementations of the following:
given a set of keys and values, and a hash function, build up a hash table in a file image, such that it can then be mapped with a java.nio ...
4
votes
4answers
753 views
Stateful tail (only shows the new lines from the last execution)
I want to be able to see how many lines were added to a file since the last quering without reading the whole file again.
Something like :
ptail my_file | fgrep "[ERROR]" | wc -l
A solution in ...
3
votes
2answers
76 views
Implementing `Auto` property in component's persistent
I have a component which has a corresponding persistent. This persistent is of course published as a property of the component, showing in the object inspector. It has a few different properties of ...
3
votes
3answers
109 views
Persisting 140 TCP connections?
We are currently investigating the most efficient way of communicating between 120-140 embedded hardware devices running on the .NET Micro framework and a server.
Each embedded device needs to send ...
3
votes
0answers
177 views
Hibernate is saving a completely new entity automaticaly(full stack of calls)
there.
I have already asked this question two times, but I'm new to stackoverflow and it seems that I don't know the rules for formatting my example code in here. Now I've decided to give the full ...
3
votes
1answer
457 views
Pheanstalk Questions
I'm looking to run a persistent instance of a python interpreter that can be passed input. The entire system designed to do this will be written in PHP. I've noticed the Pheanstalk package for use ...
3
votes
0answers
105 views
Why there isn't any popular php server? [closed]
I'm not asking this to start a troll, but it starts with an observation.
Every programming languages have their own server that increase their performances.
Ruby have Mongrel, Thin. Python have many ...
3
votes
1answer
236 views
Does Drupal support persistent DB connections?
Does Drupal support persistent DB connections?
If yes, how do you set them up and what are the downsides?
If no,... why not?
3
votes
1answer
765 views
Android timer that works when device is sleeping
I'm writing a sports app that needs to track the elapsed time of quarter/half/period. Elapsed time needs to be accurate to the second. The game clock needs to continue to run even if the user ...
3
votes
2answers
286 views
persistent local variable in c
Are persistent variables not widely used? I couldn't find much info about them online or in the index of my C textbook - the Art and Science of C.
Anything you can share about them, especially ...
3
votes
3answers
99 views
PHP, MySQL and a large nummer of simple queries
I'm implementing an application that will have a lot of clients querying lots of small data packages from my webserver. Now I'm unsure whether to use persistent data connections to the database or ...
3
votes
4answers
708 views
Implementing a file based queue
Hi folks
I have an in memory bounded queue in which multiple threads queue objects. Normally the queue should be emptied by a single reader thread that processes the items in the queue.
However, ...
3
votes
2answers
2k views
Authentication/Session cookie deleting after browser close
What are the exact steps required for a cookie to persist after a browser is closed? At the moment I have:
createPersistentCookie set to true on LoggedIn event.
MachineKey specified.
Forms sliding ...
3
votes
3answers
356 views
Help with Perl persistent data storage using Data::Dumper
I have been trying to figure this out for way to long tonight. I have googled it to death and none of the examples or my hacks of the examples are getting it done. It seems like this should be pretty ...
3
votes
1answer
637 views
Persistent Data with Javascript
I have an application that has a "parent" window. In the parent window there are menu items, like the following (using PHP here):
// sample link
echo "<li><a href=\"#\" ...
2
votes
0answers
50 views
Baffled by selectOneMany in Yesod
Sweet but simple, how do Persistent joins work? Consider the following model:
Person
number Int
numberOfEyes Int
firstName FirstnamesId
lastName LastnamesId
Lastnames
lastname ...
2
votes
1answer
40 views
Making Custom Instances of PersistBackend
I have a monad transformer stack of the form:
newtype T m a = T { unT :: StateT State (SqlPersist m) a }
deriving (Monad, MonadState State)
And want to use the persistent insert and lookup ...
2
votes
2answers
92 views
Java FIFO Queue with spill-over to disk
I'm working/preparing an application that is based on a producer/consumer model. In my case there will be one producer which generates several million (non-trivial) tasks, and there will be a ...
2
votes
1answer
100 views
R equivalent of Matlab's 'persistent'
Say I have a matlab function:
function y = myfunc(x)
persistent a
a = x*10
...
What is the equivalent statement in R for the persistent a statement? <<- or assign()?
2
votes
3answers
87 views
How to implement persistent page using php/jquery?
You load a page display.php with a lot of ajax content in different areas of page.
A user clicks inside the page and some part of ajax content changes. Now when a user
clicks the reload button on the ...
2
votes
1answer
74 views
Saving type information of datastructures
I am building a framework for my day-to-day tasks. I am programming in scala using a lot of type parameter.
Now my goal is to save datastructures to files (e.g. xml files). But I realized that it is ...
2
votes
1answer
90 views
Java IDL : servertool does not register and hangs
I am running CORBA Persistent Object implementation in Java IDL
as in Java IDL: The "Hello World" Example
I followed exact procedure in above article
I used servertool for registering Persistent ...
2
votes
3answers
287 views
Persistent TCP connection on android port number choice?
If you were to implement a persistent tcp connection on android what port number would you choose?
This is the sort of connection used by Google's C2DM service.
2
votes
5answers
159 views
Are F# lists persistent?
I'm a C# developer new to F#,I understand that in .net the strings are immutable. In other words every time you modify a string you get a new string instance.
For a non functional mind like mine ...
2
votes
1answer
40 views
React differently if second time user visits domain
I am working on building a Kynetx app that fires a different action on a domain if it is the second time a user has visited the page. I think I need to use a persistant trail to mark when a user ...
2
votes
0answers
533 views
Ajax Push Engine (Comet) and persistent chat - how to implement?
We are developing an online real-time web browser game and we have chosen to use APE Server.
We have an in-game chat system from our previous project and we would like to port it to APE. As we are a ...
2
votes
1answer
69 views
How do I track overhead of establishing/closing mysql connections
I'm trying to determine if I should be using persistent connections or not. How can I track the overhead of establishing/closing mysql connections in PHP?
2
votes
2answers
331 views
Why are CherryPy object attributes persistent between requests?
I was writing debugging methods for my CherryPy application. The code in question was (very) basically equivalent to this:
import cherrypy
class Page:
def index(self):
try:
...
2
votes
1answer
647 views
Rails test db doesn't persist record changes
I've been trying to solve a problem for a few weeks now. I am running rspec tests for my Rails app, and they are working fine except for one error that I can't seem get my head around.
I am using ...
2
votes
1answer
556 views
Are android wallpapers persistent?
I have an application that sets the user's background. Is it possible to remove the wallpaper if my app is uninstalled?