Alexey Zakhlestin
Alexey Zakhlestin
Am I correct, that click on "DNSCrypt" should switch resolving to local proxy? That doesn't work for me. Nothing happens when I click on it. If I chose 127.0.0.1 manually...
We need a FastCGI connector. FastCGI support is more widely available than SCGI support and protocol is more capable in general (multiplexing support). The plan is to implement FastCGI connector...
Quoting PAStheLoD: > Hi, please consider the issue of input buffering, especially in the case of handling large file uploads. (And trying to show the user transfer the speed for...
I use promise based rendering in a project. Server is build using webpack Sometimes, while in development mode, I see that rapscallion's promise just never returns. It usually happens when...
I'm trying to replace part of my home-baked SPARQL-system with EasyRDF. And currently, the only thing which stops me, is HTTP Client. part. 1. Default client does not support persistent...
Currently, EasyRdf trusts server to give us a `Content-type` header corresponding to the body of request. That's good and logical, but some servers are not either good or logical :-D...
Currently, prefix (namespace) system is rudimentary and is not formally tested against the spec. Additionally, there is a problem that different serialization formats use different prefix standards. For easyrdf 1.1+...
I have a usecase (inserting data via GraphStore protocol into StarDog 2.0 triplestore) in which EasyRDF just waits forever in `fgets` on this line: https://github.com/njh/easyrdf/blob/master/lib/EasyRdf/Http/Client.php#L448 debug-annotated code ``` php //...
`EasyRdf_Resource::allLiterals()` returns values only if shortened name of property is given. It should work with full name too
N-Triples format is great for machine-parsing (one line per-triple), but it has issues with non-ASCII characters. Turtle format is a superset of N-Triples and it doesn't have issues with non-ASCII...