aboutsummaryrefslogtreecommitdiff
path: root/src/datastore
Commit message (Collapse)AuthorAge
* -comments: the world ain't all malepsyc://loupsycedyglgamf.onion/~lynX2018-06-27
|
* fix https://gnunet.org/bugs/view.php?id=4904Schanzenbach, Martin2018-06-24
|
* AUTOSTART renamed into START_ON_DEMAND (#4547a)psyc://loupsycedyglgamf.onion/~lynX1984-04-04
|
* paragraph for gnunet devs that don't know how to use the webpsyc://loupsycedyglgamf.onion/~lynX2018-06-07
|
* glitch in the license text detected by hyazinthe, thank you!psyc://loupsycedyglgamf.onion/~lynX2018-06-07
|
* better indentation, nicer formatting of SQLChristian Grothoff2018-06-06
|
* first batch of license fixes (boring)psyc://loupsycedyglgamf.onion/~lynX2018-06-05
|
* follow-up, fix conf locationsNils Gillmann2018-05-19
| | | | Signed-off-by: Nils Gillmann <ng0@n0.is>
* Switch to $GNUNET_TMP in all configuration files.Nils Gillmann2018-05-06
| | | | Signed-off-by: Nils Gillmann <ng0@n0.is>
* minor bugfixesChristian Grothoff2018-04-10
|
* fix datstore bind issue for real this timeDavid Barksdale2018-02-05
|
* fix datastore bind issueChristian Grothoff2018-01-30
|
* SQLite doesn't constant foldDavid Barksdale2018-01-14
|
* Fix skip_next_messages counting, combine logicDavid Barksdale2017-11-10
| | | | | | | | | This fixes messages like these: Nov 10 08:57:34-927033 fs-22733 ERROR Request 0x6080017479a0 of type 100 at head of datastore queue for more than 1 m And might fix issue #3903
* disconnect CADET only after client count hits zeroChristian Grothoff2017-10-02
|
* more aggressive index creationChristian Grothoff2017-09-30
|
* rename GNUNET_PQ_QueryStatus to GNUNET_DB_QueryStatusChristian Grothoff2017-06-11
|
* [datastore] Remove unused indicies from sqliteDavid Barksdale2017-06-05
| | | | | | *** The table name was changed *** Users will need to dump and re-import their sqlite databases with gnunet-datastore -d and -i.
* finish datastore pq refactoringChristian Grothoff2017-06-04
|
* more pq workChristian Grothoff2017-06-03
|
* adding more good helpers to libgnunetpqChristian Grothoff2017-06-01
|
* [datstore] make sqlite page_size power of twoDavid Barksdale2017-05-31
|
* removed LIMIT expression from DELETE stmt. See ↵xrs2017-04-19
| | | | http://sqlite.org/syntaxdiagrams.html#delete-stmt
* [datastore] Create remove plugin API callDavid Barksdale2017-04-16
| | | | | | The only use of vhash in the get_key call was for removing, split that out into its own function. This simplifies the get_key call and removes the need for some indexes, speeding up insertion into the database.
* [datastore] Combine put and update plugin APIsDavid Barksdale2017-04-16
| | | | This resolves issue #4965.
* Rewrite gnunet-datastore to dump to a fileDavid Barksdale2017-04-13
|
* [datastore] Fix performance tests after API changeDavid Barksdale2017-03-27
|
* rename GNUNET_GETOPT functions to achieve better consistencyChristian Grothoff2017-03-25
|
* [datastore] Return and update replicationDavid Barksdale2017-03-22
| | | | | | This fixes a couple FIXMEs in the datastore code. The replication value is now returned from the datastore and the update function can increase the replication.
* [datastore] Fix #3743David Barksdale2017-03-19
| | | | | | | | | | | | | | | | | | | | This change adds support for key == NULL to the datastore plugins and replaces the offset argument with a next_uid and random arguments to increase performance in the key == NULL case. With the offset argument a datastore plugin would have to count all matching keys before fetching the key at the right offset, which would iterate over the entire database in the case of key == NULL. The offset argument was used in two ways: to iterate over a set of matching values and to start iteration at a random matching value. The new API seperates these into two arguments: if random is true it will return a random matching value, otherwise next_uid can be set to uid + 1 to return the next matching value. The random argument was not added to get_zero_anonymity. This function is used to periodically insert zero anonymity values into the DHT. I don't think it's necessary to randomize this.
* more renamings relating to 'new' service now just being the 'normal' serviceChristian Grothoff2017-03-17
|
* Porting 'nat'.Marcello Stanisci2017-03-15
|
* convert sqlite peerstore to using libgnunetsqChristian Grothoff2017-03-14
|
* use new GNUNET_SQ_reset where applicableChristian Grothoff2017-03-12
|
* converting datacache to sqlite, fixing misc. issues in libgnunetsqChristian Grothoff2017-03-12
|
* use libgnunetsq throughout plugin_datastore_sqlite, fix situation where ↵Christian Grothoff2017-03-10
| | | | continuation was not called if no data was ready for replication
* properly handle error on empty queueChristian Grothoff2017-03-10
|
* starting conversion of plugin_datastore_sqlite to use libgnunetsqChristian Grothoff2017-03-10
|
* introduce warning if QE fails to make progressChristian Grothoff2017-03-10
|
* remove empty files, fix indentationChristian Grothoff2017-03-10
|
* we use CREATE INDEX IF NOT EXITS, this requires postgres>=9.6, bump ↵Christian Grothoff2017-03-09
| | | | dependency requirements
* fix crash in test if DB did not yet existChristian Grothoff2017-02-26
|
* W32: cast ntohl() result to uint32_tРуслан Ижбулатов2017-02-25
| | | | W32 version of ntohl() returns u_long. Thank you, Microsoft!
* even nicer queue size optimization: insert-at-tail if we can instantly tell, ↵Christian Grothoff2017-02-23
| | | | always
* optimize queue-full case, reduce max queue size due to O(n) operationChristian Grothoff2017-02-23
|
* Restrict update to positive priority deltasDavid Barksdale2017-02-20
| | | | | This is only ever called with positive values and the mysql and postgres plugins were not handling negative values correctly anyway.
* Remove unused GNUNET_DATASTORE_update() API callDavid Barksdale2017-02-20
|
* unset XDG environment variable during testcases, as they can screw things up ↵Christian Grothoff2017-01-27
| | | | badly
* simplify GNUNET_CONTAINER_heap_update_cost APIChristian Grothoff2017-01-16
|
* rename connecT -> connect now that the old API is deadChristian Grothoff2017-01-10
|