$result = db_query($link,
"INSERT INTO ttrss_user_entries
(ref_id, owner_uid, feed_id, unread, last_read, marked,
- published, score)
+ published, score, tag_cache)
VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
- $last_read_qpart, $marked, $published, '$score')");
+ $last_read_qpart, $marked, $published, '$score', '')");
$result = db_query($link,
"SELECT int_id FROM ttrss_user_entries WHERE
(owner_uid,tag_name,post_int_id)
VALUES ('$owner_uid','$tag', '$entry_int_id')");
}
+
+ /* update the cache */
+
+ $tags_str = db_escape_string(join(",", $filtered_tags));
+
+ db_query($link, "UPDATE ttrss_user_entries
+ SET tag_cache = '$tags_str' WHERE ref_id = '$entry_ref_id'
+ AND owner_uid = $owner_uid");
}
db_query($link, "COMMIT");
if ($memcache && $obj = $memcache->get($obj_id)) {
$tags = $obj;
} else {
- $tmp_result = db_query($link, $query);
+ /* check cache first */
+
+ $result = db_query($link, "SELECT tag_cache FROM ttrss_user_entries
+ WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
+
+ $tag_cache = db_fetch_result($result, 0, "tag_cache");
+
+ if ($tag_cache) {
+ $tags = explode(",", $tag_cache);
+ } else {
- while ($tmp_line = db_fetch_assoc($tmp_result)) {
- array_push($tags, $tmp_line["tag_name"]);
+ /* do it the hard way */
+
+ $tmp_result = db_query($link, $query);
+
+ while ($tmp_line = db_fetch_assoc($tmp_result)) {
+ array_push($tags, $tmp_line["tag_name"]);
+ }
+
+ /* update the cache */
+
+ $tags_str = db_escape_string(join(",", $tags));
+
+ db_query($link, "UPDATE ttrss_user_entries
+ SET tag_cache = '$tags_str' WHERE ref_id = '$id'
+ AND owner_uid = " . $_SESSION["uid"]);
}
if ($memcache) $memcache->add($obj_id, $tags, 0, 3600);
$id = db_escape_string($_REQUEST["id"]);
$tags_str = db_escape_string($_REQUEST["tags_str"]);
-
$tags = array_unique(trim_array(split(",", $tags_str)));
+ $tags_str = db_escape_string(join(",", $tags));
db_query($link, "BEGIN");
}
}
+ db_query($link, "UPDATE ttrss_user_entries
+ SET tag_cache = '$tags_str' WHERE ref_id = '$id'
+ AND owner_uid = " . $_SESSION["uid"]);
+
db_query($link, "COMMIT");
if ($memcache) {
owner_uid integer not null,
marked bool not null default 0,
published bool not null default 0,
+ tag_cache text not null,
last_read datetime,
score int not null default 0,
note longtext,
create table ttrss_version (schema_version int not null) TYPE=InnoDB DEFAULT CHARSET=UTF8;
-insert into ttrss_version values (71);
+insert into ttrss_version values (72);
create table ttrss_enclosures (id integer primary key auto_increment,
content_url text not null,
owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
marked boolean not null default false,
published boolean not null default false,
+ tag_cache text not null,
last_read timestamp,
score int not null default 0,
note text,
create table ttrss_version (schema_version int not null);
-insert into ttrss_version values (71);
+insert into ttrss_version values (72);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,