Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
c18c6998
Commit
c18c6998
authored
Jan 28, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
--no commit message
--no commit message
parent
df2b2ef8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
4 deletions
+25
-4
Sqlite.php
lib/Doctrine/Cache/Sqlite.php
+25
-4
No files found.
lib/Doctrine/Cache/Sqlite.php
View file @
c18c6998
...
...
@@ -31,7 +31,7 @@
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/
class
Doctrine_Cache_Sqlite
implements
Doctrine_Cache_Interface
class
Doctrine_Cache_Sqlite
implements
Doctrine_Cache_Interface
,
Countable
{
/**
* Test if a cache is available for the given id and (if yes) return it (false else)
...
...
@@ -44,7 +44,12 @@ class Doctrine_Cache_Sqlite implements Doctrine_Cache_Interface
*/
public
function
fetch
(
$id
,
$testCacheValidity
=
true
)
{
$sql
=
'SELECT data, expires FROM cache WHERE id = ?'
;
$params
=
array
(
$id
);
$result
=
$this
->
conn
->
fetchAssoc
(
$sql
,
$params
);
return
unserialize
(
$result
[
'data'
]);
}
/**
* Test if a cache is available or not (for the given id)
...
...
@@ -66,9 +71,13 @@ class Doctrine_Cache_Sqlite implements Doctrine_Cache_Interface
* @param int $lifeTime if != false, set a specific lifetime for this cache record (null => infinite lifeTime)
* @return boolean true if no problem
*/
public
function
save
(
$data
,
$id
,
$
tags
=
array
(),
$
lifeTime
=
false
)
public
function
save
(
$data
,
$id
,
$lifeTime
=
false
)
{
$sql
=
'INSERT INTO cache (id, data, expires) VALUES (?, ?, ?)'
;
$params
=
array
(
$id
,
serialize
(
$data
),
(
time
()
+
$lifespan
));
return
(
bool
)
$this
->
conn
->
exec
(
$sql
,
$params
);
}
/**
* Remove a cache record
...
...
@@ -78,6 +87,18 @@ class Doctrine_Cache_Sqlite implements Doctrine_Cache_Interface
*/
public
function
delete
(
$id
)
{
$sql
=
'DELETE FROM cache WHERE id = ?'
;
return
(
bool
)
$this
->
conn
->
exec
(
$sql
,
array
(
$md5
));
}
/**
* count
* returns the number of cached elements
*
* @return integer
*/
public
function
count
()
{
return
(
int
)
$this
->
conn
->
fetchOne
(
'SELECT COUNT(*) FROM cache'
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment