Thread: [W3af-svn-notify] SF.net SVN: w3af:[5364] branches/threading2/core/data/db
Status: Beta
Brought to you by:
andresriancho
From: <and...@us...> - 2012-07-17 02:03:33
|
Revision: 5364 http://w3af.svn.sourceforge.net/w3af/?rev=5364&view=rev Author: andresriancho Date: 2012-07-17 02:03:27 +0000 (Tue, 17 Jul 2012) Log Message: ----------- Migrated db.py to a new model where all access to sqlite3 is done in the same thread and INSERT/SELECTs are Queued into an input Queue which allows for a very fast API for clients that want to INSERT stuff and don't care about any results (which is our case). Modified Paths: -------------- branches/threading2/core/data/db/db.py branches/threading2/core/data/db/history.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-07-17 13:47:22
|
Revision: 5368 http://w3af.svn.sourceforge.net/w3af/?rev=5368&view=rev Author: andresriancho Date: 2012-07-17 13:47:12 +0000 (Tue, 17 Jul 2012) Log Message: ----------- * Removing __main__ from unittest * Adding cache_size setting to our sqlite3 wrapper * Migrated disk_list to new sqlite3 wrapper Modified Paths: -------------- branches/threading2/core/data/db/db.py branches/threading2/core/data/db/disk_list.py branches/threading2/core/data/db/tests/test_disk_list.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-08-08 19:16:24
|
Revision: 5531 http://w3af.svn.sourceforge.net/w3af/?rev=5531&view=rev Author: andresriancho Date: 2012-08-08 19:16:18 +0000 (Wed, 08 Aug 2012) Log Message: ----------- Adding iterkeys to the temp_shelve in order to avoid doing all the unpickling and storing all in memory. Modified Paths: -------------- branches/threading2/core/data/db/temp_shelve.py branches/threading2/core/data/db/tests/test_temp_shelve.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-10-21 23:40:24
|
Revision: 5979 http://w3af.svn.sourceforge.net/w3af/?rev=5979&view=rev Author: andresriancho Date: 2012-10-21 23:40:18 +0000 (Sun, 21 Oct 2012) Log Message: ----------- * Less smoke * Adding thread safe unittests * Made disk_sets thread safe Modified Paths: -------------- branches/threading2/core/data/db/disk_set.py branches/threading2/core/data/db/tests/test_disk_list.py branches/threading2/core/data/db/tests/test_disk_set.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-12-06 13:51:25
|
Revision: 6276 http://w3af.svn.sourceforge.net/w3af/?rev=6276&view=rev Author: andresriancho Date: 2012-12-06 13:51:15 +0000 (Thu, 06 Dec 2012) Log Message: ----------- * Minor improvement to clear method: - Removed the DELETE *, was useless since I was removing the file afterwards - Set _db to None * Minor improvements to test case readability Modified Paths: -------------- branches/threading2/core/data/db/history.py branches/threading2/core/data/db/tests/test_history.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2012-12-13 19:07:42
|
Revision: 6361 http://w3af.svn.sourceforge.net/w3af/?rev=6361&view=rev Author: andresriancho Date: 2012-12-13 19:07:30 +0000 (Thu, 13 Dec 2012) Log Message: ----------- Better db exception handling, bring all exceptions back to main thread. Modified Paths: -------------- branches/threading2/core/data/db/db.py Added Paths: ----------- branches/threading2/core/data/db/tests/test_db.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2013-01-03 19:29:36
|
Revision: 6605 http://w3af.svn.sourceforge.net/w3af/?rev=6605&view=rev Author: andresriancho Date: 2013-01-03 19:29:14 +0000 (Thu, 03 Jan 2013) Log Message: ----------- Tested shelve vs sqlite speed; recorded results for future reference Modified Paths: -------------- branches/threading2/core/data/db/temp_shelve.py Added Paths: ----------- branches/threading2/core/data/db/tests/shelve_vs_sqlite3.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2013-01-04 19:56:16
|
Revision: 6615 http://w3af.svn.sourceforge.net/w3af/?rev=6615&view=rev Author: andresriancho Date: 2013-01-04 19:56:06 +0000 (Fri, 04 Jan 2013) Log Message: ----------- Much more stable, but still needs history to work. Modified Paths: -------------- branches/threading2/core/data/db/dbms.py branches/threading2/core/data/db/disk_dict.py branches/threading2/core/data/db/disk_list.py branches/threading2/core/data/db/disk_set.py branches/threading2/core/data/db/history.py branches/threading2/core/data/db/tests/test_dbms.py branches/threading2/core/data/db/tests/test_disk_dict.py branches/threading2/core/data/db/tests/test_disk_list.py branches/threading2/core/data/db/tests/test_disk_set.py branches/threading2/core/data/db/tests/test_variant_db.py branches/threading2/core/data/db/variant_db.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2013-01-05 04:11:02
|
Revision: 6616 http://w3af.svn.sourceforge.net/w3af/?rev=6616&view=rev Author: andresriancho Date: 2013-01-05 04:10:56 +0000 (Sat, 05 Jan 2013) Log Message: ----------- Only 1 unittest missing! Modified Paths: -------------- branches/threading2/core/data/db/history.py branches/threading2/core/data/db/tests/test_history.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <and...@us...> - 2013-01-06 21:32:25
|
Revision: 6623 http://w3af.svn.sourceforge.net/w3af/?rev=6623&view=rev Author: andresriancho Date: 2013-01-06 21:32:18 +0000 (Sun, 06 Jan 2013) Log Message: ----------- * Added test for get default db * Refactoring in dbms, move all sqlite3 stuff to thread Modified Paths: -------------- branches/threading2/core/data/db/dbms.py branches/threading2/core/data/db/tests/test_dbms.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |